To change network firewall profiles within Windows 8 using PowerShell (such as going from Public to Private), use the following command to list all network interfaces and the current values.
Get-NetConnectionProfile
To modify the profile, use the following command including the network interface to change and the new value.
Set-NetConnectionProfile -InterfaceAlias Ethernet -NetworkCategory Private
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.