所以我想将我们公司网络上的所有计算机的网络类型更改为私人。
第一个想法是制作一个批处理文件,并在每台电脑上运行。这是最简单的方法吗?我如何使用批处理更改类型?有命令吗netsh
?
答案1
您可以在组策略中推出一项策略或在 powershell 中运行该策略。
- 跑步
Get-NetConnectionProfile
这将返回类似这样的内容:
Name : myCorporateNetworkName
InterfaceAlias : Ethernet 6
InterfaceIndex : 15
NetworkCategory : Public
IPv4Connectivity : Internet
IPv6Connectivity : Internet
- 跑步
Set-NetConnectionProfile -Name "myCorporateNetworkName" -NetworkCategory Private
使用命令 1 中的“名称”字段输入命令 2 中的名称参数。一旦您在一台计算机上确定了名称,它们在所有其他机器上应该都相同。脚本看起来就像这样:
Set-NetConnectionProfile -Name "myCorporateNetworkName" -NetworkCategory Private
将此行代码保存为.ps1
文件,然后在所有机器上运行它。