Windowsfirewall

From Piszczynski
Revision as of 13:57, 5 December 2023 by Aleks (talk | contribs) (→‎Enable File and Printer sharing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Windows Firewall Rules

Create windows firewall rule in PS:

New-NetFirewallRule -DisplayName "rule name" -Direction Inbound -LocalPort 80,443<ports seperated by commas> -Protocol TCP -Action Allow

Find firewall rules by port number:

Get-NetFirewallPortFilter | Where-Object { $_.LocalPort -eq <port_number> } | Get-NetFirewallRule

Enable File and Printer sharing

Enable file and printer sharing in windows firewall

Set-NetFirewallRule -DisplayGroup "File And Printer Sharing" -Enabled True -Profile Domain