Log of Windows 2019 Lab Setup

Steps

  1. Install a pfSense firewall (instead of ubuntu)
  2. Install a Windows 10 machine to work from and put it behind the firewall (setup appropriate firewall rules and forwarding rules)
  3. 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

  1. Install from iso
  2. Set administrator passord as requested
  3. type > sconfig

    1. Set the name of the computer to cpte230a
    2. Enabled remote management
  4. Setup remote access using ps> winrm qui1ckconfig will verify that the previous step worked.

  5.  PS> Set-NetFirewallRule -DisplayGroup 'Remote Event Log Management' -enabled True -PassThru 

WindowsAdministration/WindowsServer2019SetupLog (last edited 2020-08-06 13:36:06 by scot)