1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

windows のネットワーク・デバイス名を変更する

Posted at

PowerShell で

現在

PS > netsh interface ipv4 show interfaces

Idx     Met         MTU          状態                 名前
---  ----------  ----------  ------------  ---------------------------
  1          75  4294967295  connected     Loopback Pseudo-Interface 1
 18           5        1500  disconnected  イーサネット
 14          15        1500  connected     イーサネット 3
  9          25        1500  connected     イーサネット 2

変更

PS > netsh interface set interface name='イーサネット 3' newname='10GbE-01'

結果

PS > netsh interface ipv4 show interfaces

Idx     Met         MTU          状態                 名前
---  ----------  ----------  ------------  ---------------------------
  1          75  4294967295  connected     Loopback Pseudo-Interface 1
 18           5        1500  disconnected  イーサネット
 14          15        1500  connected     10GbE-01
  9          25        1500  connected     イーサネット 2
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?