44.更改网络为公用或专用

方法一:用PowerShell命令的方式修改(比较安全,仅限于当前连接的网络)

获取网络连接信息

1
Get-NetConnectionProfile

设置为专用

1
Set-NetConnectionProfile -Name 网络 -NetworkCategory Private

设置为公用

1
Set-NetConnectionProfile -Name 网络 -NetworkCategory Public

命令组合修改

1
$Name = Get-NetConnectionProfile;Set-NetConnectionProfile -Name $Name.Name -NetworkCategory Private

方法二:修改注册表(暂时等之后再总结)

  • Copyrights © 2023-2024 kukusun