我在用鰤鱼从家连接到办公室,反之亦然 - 但我在从办公室连接到家时遇到了问题。
在家里,Hamachi 是在公共网络上,我该如何将其更改为私有网络?
我看到了这个问题,但它是Windows 7:
如何从公共网络更改为专用网络
另外,我希望在 Powershell 中使用它。
答案1
我找到了这篇文章:
如何使用 PowerShell 强制 Windows 中的网络类型
运行 powershell 脚本:
#check the network you got - get the names
Get-NetConnectionProfile
#the name of my network is - Network 2 - that's the one I am making private
#make it private
Set-NetConnectionProfile -Name "Network 2" -NetworkCategory Private
#check out the results
Get-NetConnectionProfile
通过 Windows 检查:
- 右键单击右侧的网络图标 - 选择
Open Network & Internet settings