Differences between revisions 3 and 4
Revision 3 as of 2020-08-05 23:26:42
Size: 912
Editor: scot
Comment:
Revision 4 as of 2020-08-05 23:42:07
Size: 939
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 28: Line 28:
 1. Setup remote access using {{{ps> winrm quickconfig}}}  1. type {{{> sconfig}}}
1. Setup remote access using {{{ps> winrm qui1ckconfig}}}

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

  4. Setup remote access using ps> winrm qui1ckconfig

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