How to rename network adapter on Windows 11

On Windows 11, you can use the Settings app to change the name of any network adapter, and here's how.

Windows 11 network rename setting
Windows 11 network rename setting / Image: Mauro Huculak
  • To change the name of a network adapter on Windows 11, open Settings > Network & internet > Advanced network settings, choose the adapter, click “Rename,” and confirm the name.
  • Alternatively, you can use the legacy Control Panel or PowerShell and Command Prompt commands.

UPDATED 10/10/2024: On Windows 11, you can change the name of a Wi-Fi or Ethernet network adapter in more than one way, and in this guide, I will explain the steps to perform this configuration.

In my case, I have a desktop computer with a Wi-Fi adapter available through the motherboard and a wireless USB dongle that I connect directly to a virtual machine. In addition, my computer has a 2.5Gb Ethernet adapter also available through the motherboard, but I installed a 10Gb network adapter (with an SPF+ port) that allows me the fastest performance to my server.

Although Windows 11 can automatically assign a name to a network adapter based on the type (Wi-Fi or Ethernet), I don’t find them descriptive enough, considering the many ports I have on the device. As a result, to make them easier to identify, I rename the network adapters through the Settings, but you can also use Control Panel or PowerShell.

In this guide, I will teach you how to rename a network adapter from the Settings app on Windows 11, as well as from Control Panel and PowerShell.

Rename network from Settings on Windows 11

To change the Wi-Fi or Ethernet adapter’s name on Windows 11, use these steps:

  1. Open Settings on Windows 11.

  2. Click on Network & internet.

  3. Click the Advanced network settings page.

    Advanced network settings

  4. Click the Wi-Fi or Ethernet adapter under the “Network adapters” section.

  5. Click the Rename button.

    Rename network adapter

  6. Confirm the new adapter name. For example, Ethernet 10Gb or Wi-Fi6E.

    Windows 11 change name Ethernet adapter

  7. Click the Save button.

Once you complete the steps, the network adapter will reflect the new name you specified on Windows 11.

Rename network from Control Panel on Windows 11

To rename a network adapter from Control Panel, use these steps:

  1. Open Start.

  2. Search for Control Panel and click the top result to open the app.

  3. Click on Network and Internet.

  4. Click on Network and Sharing Center.

  5. Click on Change adapter settings from the left navigation pane.

    Change adapter settings

  6. Right-click the Wi-Fi or Ethernet adapter and select the Rename option.

    Control Panel rename network adapter

  7. Confirm the new adapter name. For example, Ethernet 10Gb or Wi-Fi6E.

After you complete the steps, the network adapter will apply the new name on Windows 11.

Rename network from PowerShell on Windows 11

To change the network adapter name with PowerShell, use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.

  3. Type the following command to view all the network adapters on your computer and press Enter:

    Get-NetAdapter | Format-List -Property Name
  4. Type the following command to rename the Wi-Fi or Ethernet adapter and press Enter:

    Rename-NetAdapter -Name "OLD-NAME" -NewName "NAME-NAME"

    In the command, change OLD-NAME for the current adapter’s name and NEW-NAME for the new name you want to assign. This example changes the name from Ethernet0 to Ethernet 10Gb:

    Rename-NetAdapter -Name "Ethernet0" -NewName "Ethernet 10Gb"

    PowerShell rename network adapter

Once you complete the steps, the PowerShell command will change the name of the wired or wireless network adapter you specified.

Alternatively, you can also download the “Pureinfotech-Rename-NetworkAdapter.ps1” PowerShell script by clicking the “Download raw file” button from the top-right corner, and then run the script to help you identify and rename the network adapters on your computer. You can read more about this PowerShell script on this page.

GitHub download script
GitHub download script / Image: Mauro Huculak

You would typically open PowerShell as administrator, set the execution policy to allow running scripts, and then, from the folder location, run the .\Pureinfotech-Rename-NetworkAdapter.ps1 command.

Pureinfotech Network Renamer tool
Pureinfotech Network Renamer tool / Image: Mauro Huculak

Rename network from Command Prompt on Windows 11

To change the network adapter name with Command Prompt, use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.

  3. Type the following command to list the network adapters and press Enter:

    netsh interface show interface
  4. Type the following command to rename the Wi-Fi or Ethernet adapter and press Enter:

    netsh interface set interface name="OLD-NAME" newname="NAME-NAME"

    In the command, change “OLD-NAME” to the current adapter’s name and “NEW-NAME” to the new name you want to assign. This example changes the name from Ethernet to Ethernet 10Gb:

    netsh interface set interface name="Ethernet" newname="Ethernet 10Gb"

    Command Prompt rename network adapter

After you complete the steps, the system will change the network adapter’s name.

Update October 10, 2024: This guide has been updated to ensure accuracy and reflect changes to the process.

About the author

Mauro Huculak is a Windows How-To Expert who started Pureinfotech in 2010 as an independent online publication. He has also been a Windows Central contributor for nearly a decade. Mauro has over 15 years of experience writing comprehensive guides and creating professional videos about Windows and software, including Android and Linux. Before becoming a technology writer, he was an IT administrator for seven years. In total, Mauro has over 21 years of combined experience in technology. Throughout his career, he achieved different professional certifications from Microsoft (MSCA), Cisco (CCNP), VMware (VCP), and CompTIA (A+ and Network+), and he has been recognized as a Microsoft MVP for many years. You can follow him on X (Twitter), YouTube, LinkedIn and About.me. Email him at [email protected].