The Windows Firewall with Advanced Security on Local Computer properties window shows the status of each firewall profile and which profile is currently active.
Unfortunately, there is no easy way to use the GUI to change the active profile. To do that, we'll use Powershell. Too see the active firewall profile, run:
> Get-NetConnectionProfile Name : Network 2 InterfaceAlias : Integrated InterfaceIndex : 8 NetworkCategory : Public IPv4Connectivity : Internet IPv6Connectivity : NoTraffic
To change the network profile, you'll have to run Powershell as administrator.
> Get-NetConnectionProfile | Set-NetConnectionProfile -NetworkCategory Private
The Windows Firewall with Advanced Security on Local Computer properties window now shows the Private profile as active.
No comments:
Post a Comment