January 14th, 2014

PowerTip: Rename Network Adapter with PowerShell

Doctor Scripto
Scripter

Summary:  Use Windows PowerShell to rename the net adapter.

Hey, Scripting Guy! Question How can I use Windows PowerShell and Windows 8 to rename my network adapter?

Hey, Scripting Guy! Answer Use the Get-NetAdapter function to retrieve the specific network adapter and
          pipe the results to the Rename-NetAdapter function:

Get-NetAdapter –Name Ethernet | Rename-NetAdapter –NewName MyRenamedAdapter

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.