0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WindowsServer 2012 R2でネットワークの場所を変更する方法

Posted at

#概要
WindowsServer 2012 R2でネットワークの場所を変更する方法を記載します。

※PowerShellを使って変更する方法を記載します。

#PowerShellを使ってネットワークの場所を確認する

PowerShell
Get-NetConnectionProfile 

#PowerShellを使ってネットワークの場所を変更する

プライベートに変更する場合

PowerShell
Get-NetConnectionProfile | where Name -eq "<ネットワーク名>" | Set-NetConnectionProfile -NetworkCategory Private

パブリックにする場合

PowerShell
Get-NetConnectionProfile | where Name -eq "<ネットワーク名>" | Set-NetConnectionProfile -NetworkCategory Public

#補足

ネットワークの場所が変更されるとファイアウォールの設定も変更されてしまうので気を付けましょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?