This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure you have enabled "Expose hardware assisted virtualization to the guest OS" for the VMWare CPU | |
Write-Host "##############################`nInstalling features: Containers, Hyper-V, Hyper-V-PowerShell`n##############################`n" | |
Install-WindowsFeature Containers | |
Install-WindowsFeature Hyper-V | |
Install-WindowsFeature Hyper-V-PowerShell | |
Write-Host "##############################`nDisabling firewall`n##############################`n" | |
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False |