Differences between revisions 2 and 3
Revision 2 as of 2020-08-05 23:22:56
Size: 902
Editor: scot
Comment:
Revision 3 as of 2020-08-05 23:26:42
Size: 912
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 14: Line 14:
To install all RSAT tools: '''To install all RSAT tools:'''
Line 19: Line 19:
To install only the missing RSAT tools: ''To install only the missing RSAT tools:''

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. Setup remote access using ps> winrm quickconfig

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