# Set the firewall profiles to allow all outbound traffic
# Run from an elevated powershell

Set-NetFirewallProfile -Profile Domain,Private,Public -DefaultInboundAction Allow -DefaultOutboundAction Allow


# Add a new firewall rule to allow all inbound traffic New-NetFirewallRule -DisplayName “Allow All Inbound” -Direction Inbound -Action Allow -Profile Any -Protocol Any -LocalPort Any -RemoteAddress Any -RemotePort Any


# Add a new firewall rule to allow all outbound traffic New-NetFirewallRule -DisplayName “Allow All Outbound” -Direction Outbound -Action Allow -Profile Any -Protocol Any -LocalPort Any -RemoteAddress Any -RemotePort Any




Thanks