如何从公共网络更改为专用网络 - Windows 10 并使用 Powershell?

如何从公共网络更改为专用网络 - Windows 10 并使用 Powershell?

我在用鰤鱼从家连接到办公室,反之亦然 - 但我在从办公室连接到家时遇到了问题。

在家里,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 检查:

  1. 右键单击右侧的网络图标 - 选择Open Network & Internet settings

在此处输入图片描述

  1. 选择Network and Sharing Centre 在此处输入图片描述

  2. 然后你就可以看到你的网络了——private现在注意

在此处输入图片描述

相关内容