= Log of Windows 2019 Lab Setup =

== Steps ==

 1. Install a pfSense firewall (instead of ubuntu)
 1. Install a Windows 10 machine to work from and put it behind the firewall (setup appropriate firewall rules and forwarding rules)
 1. 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
 1. Set administrator passord as requested
 1. type {{{> sconfig}}}
    a. Set the name of the computer to cpte230a
    a. Enabled remote management
 1. Setup remote access using {{{ps> winrm qui1ckconfig}}} will verify that the previous step worked. 
 1. {{{ PS> Set-NetFirewallRule -DisplayGroup 'Remote Event Log Management' -enabled True -PassThru }}}