所以我想將我們公司網路上所有電腦的網路類型更改為專用。
第一個想法是製作一個批次文件,並在每台電腦上運行。這是最簡單的方法嗎?我怎樣才能改變批次的類型?有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
文件,您可以在所有機器上運行它。