Windows Firewall

Created
Created
2020 Jul 22 1:11
Refs
Refs
  • firewall - 8181, 8282, 3389, 51820, 80, 443
# Disable hyper-v (which will required a couple of restarts) dism.exe /Online /Disable-Feature:Microsoft-Hyper-V # When you finish all the required restarts, reserve the port you want so hyper-v doesn't reserve it back netsh int ipv4 add excludedportrange protocol=tcp startport=8181 numberofports=1 # Re-Enable hyper-V (which will require a couple of restart) dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All

Recommendations