Log of Windows 2019 Lab Setup
Steps
- Install a pfSense firewall (instead of ubuntu)
- Install a Windows 10 machine to work from and put it behind the firewall (setup appropriate firewall rules and forwarding rules)
- Setup RSAT tools on windows 10 machine
Windows 10
First we will install the RSAT tools on a windows 10 machine (in my case I did it on my laptop, but you will need to do it on a window 10 VM).
To install all RSAT tools:
PS> Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
To install only the missing RSAT tools:
Get-WindowsCapability -Online |? {$_.Name -like "*RSAT*" -and $_.State -eq "NotPresent"} | Add-WindowsCapability -Online
Windows 2019 A
- Install from iso
- Set administrator passord as requested
type > sconfig
- Set the name of the computer to cpte230a
- Enabled remote management
Setup remote access using ps> winrm qui1ckconfig will verify that the previous step worked.
PS> Set-NetFirewallRule -DisplayGroup 'Remote Event Log Management' -enabled True -PassThru