Firewall
powershell.exe
Get-NetFirewallProfile | Format-Table Name, EnabledIf we have admin privileges we can disable the firewall:
1)
Set-NetFirewallProfile -Profile Domain, Public, Private -Enabled False2)
Get-NetFirewallProfile | Format-Table Name, EnabledCheck Rules
Get-NetFirewallRule | select DisplayName, Enabled, DescriptionTest Inbound Connections
Test-NetConnection -ComputerName 127.0.0.1 -Port PORTLast updated