2019年1月8日火曜日

PowerShelllでネットワークの場所を変更する

PowerShelllでNetConnectionProfileの設定を変更する

●プライベートに変更する場合
PS> Get-NetConnectionProfile | where Name -eq "<ネットワーク名>" | Set-NetConnectionProfile -NetworkCategory Private

●パブリックに変更する場合
PS> Get-NetConnectionProfile | where Name -eq "<ネットワーク名>" | Set-NetConnectionProfile -NetworkCategory Public

●ネットワーク名の確認方法
PS > Get-NetConnectionProfile

Name             : ネットワーク
InterfaceAlias   : ローカル エリア接続
InterfaceIndex   : 9
NetworkCategory  : Private
IPv4Connectivity : Internet
IPv6Connectivity : NoTraffic

のName欄の名前がネットワーク名

0 件のコメント:

コメントを投稿