Windows Server 网络连接由公用网络改为专用网络
1.Get-NetConnectionProfile //获取编号
2. Set-NetConnectionProfile -Name "未识别的网络" -NetworkCategory Private
设置成【专用网络】,这里要注意InterfaceIndex 编号
set-netconnectionprofile -InterfaceIndex 30 -NetworkCategory Private
如果设置成【公用网络】
set-netconnectionprofile -InterfaceIndex 30 -NetworkCategory Public