Environment Setup (SYS 265) - Chromosom3/TechNotes GitHub Wiki
Environment Setup
Summary:
This entry will be focused on the first lab for my Sysadmin & Net Services II (SYS-265) class. In this lab I had to set up and configure three windows systems (1 server 2019 w/ Desktop Experience, 1 server 2019 core, and 1 windows 10 system) and a firewall (pfsense).
pfSense:
default credentials:
- User: admin
- Password: pfsense
Windows Server Core:
- One way to configure server core without using server manager would be to use
sconfig
. This provides you with most of the options that you would see under the local server section of Server Manager.
- Install AD on Server Core using the following PowerShell commands:
Install-WindowsFeature AD-Domain-Services -IncludeManagmentTools
Install-ADDSForest -DomainName YOURDOMAIN.TLD
- Automated AD setup via PowerShell