Skip to main content
Jorge Bernhardt Jorge Bernhardt
  1. Posts/

How to rename a Network Adapter using Rename-NetAdapter cmdlet

·126 words·1 min· 100 views · 5 likes ·
Get-NetAdapter Microsoft Microsoft Windows PowerShell

Today I want to show you how to rename network interfaces using the Rename-NetAdapter cmdlet. It is a good practice to change the name of the network interfaces to facilitate the management of servers with several network cards.

rename-netadapter.
To rename a network adapter with PowerShell, use the cmdlet with the following syntax:

Rename-NetAdapter `
    -Name <String[]> `
    -NewName <String>

With the Get-NetAdapter cmdlet, we get the list of all the network adapters and their properties. for example, the current names of the interfaces.

get-netadapter
Once located the interface that we want to rename. Run the PowerShell console as administrator, and then type:
rename-netadapter

Thanks for reading my post. I hope you find it useful.

If you want to know more about the Rename-NetAdapter cmdlet, check out this link.