7 ways to find your MAC address in Windows

Do you want to know the MAC address of your Windows computer or device? To help you, this article describes seven different methods to get the MAC address of your network adapter. Some of them are quick, like the getmac command. Others, like the one using the Settings app, require a bit more clicking. If you want to know how to find the MAC address of your laptop or desktop PC in Windows 10 and Windows 11, read this guide and find the method that works best for you:

Contents

  1. 1. Find your MAC address using the getmac command in Terminal, PowerShell, or Command Prompt
  2. 2. How to find your MAC address with the “get-netadapter” command in PowerShell
  3. 3. Get your MAC address by running the ipconfig command in Windows Terminal, PowerShell, or Command Prompt
  4. 4. How to find your MAC address using the “wmic nic get” command in Windows Terminal, PowerShell, and Command Prompt
  5. 5. How to get your MAC address in Windows using the Settings app
    1. Identify your MAC address using Settings in Windows 11
    2. Identify your MAC address using Settings in Windows 10
  6. 6. Find the MAC address of any of your network adapters using System Information
  7. 7. How to find the MAC address of the active network adapter from the Control Panel
  8. Do you know other ways of finding the MAC address in Windows?

NOTE: The methods we show in this guide work in both Windows 10 and Windows 11. If you do not know what version of Windows you have, read this tutorial: How to tell what Windows I have (11 ways).

1. Find your MAC address using the getmac command in Terminal, PowerShell, or Command Prompt

This is the fastest method we know for finding the MAC addresses of all your network adapters in Windows, including virtual ones that are installed by virtualization software like VirtualBox or VMware. First, open Command Prompt, PowerShell, or Windows Terminal. Then, type in the command getmac and press Enter on your keyboard. The getmac command outputs a list of all your network adapters and their MAC addresses, which you can check in the Physical Address column highlighted below. Unfortunately, it’s relatively difficult to tell which adapter is which, as the command doesn’t display “friendly” names for them.

7 ways to find your MAC address in Windows

Find the MAC address with the getmac command

Please note that the getmac command can only show the MAC addresses for enabled network adapters. To find the MAC address of a disabled network adapter using getmac, you must first enable that network adapter.

TIP: If you want to know more about MAC addresses, here is an article about what the MAC address is and how it’s used.

2. How to find your MAC address with the “get-netadapter” command in PowerShell

Another quick way to find your MAC address in Windows is to open PowerShell (or a PowerShell tab in Windows Terminal) and type in the command below, followed by Enter.

get-netadapter

This command shows the basic properties of every visible network adapter available on your Windows PC. You can see the MAC addresses in the MacAddress column. Please note that, depending on your screen resolution, you might have to resize the text in the PowerShell or Terminal window by pressing Ctrl together with the minus sign (to make it smaller) or the plus sign (to make it larger) in order to be able to read the whole table. If you can’t see the MAC address, simply make the text smaller and run the command again.

7 ways to find your MAC address in Windows

Identify the MAC address with the get-netadapter command in PowerShell

The advantage of the Get-NetAdapter command over the getmac command is that it shows the MAC addresses for all visible network adapters, including disabled ones. For each network adapter, you can view its current status, alongside its MAC address and other properties.

If you only want the name of the adapter and its MAC address, copy and paste the following command in the PowerShell window, then press Enter:

get-netadapter | Format-List -Property "Name", "InterfaceDescription", "MacAddress"

This displays a list that’s much easier to read:

7 ways to find your MAC address in Windows

The command takes longer to input, but the result is easier to read

NOTE: The Get-NetAdapter command only works in PowerShell (or in Windows Terminal, if you open a PowerShell tab). It doesn't work in Command Prompt.

3. Get your MAC address by running the ipconfig command in Windows Terminal, PowerShell, or Command Prompt

The ipconfig command is designed to provide detailed information about your network connections and network adapters, both physical and virtual. To run it, first launch Windows Terminal, PowerShell, or Command Prompt. Then, type the following command and press Enter on your keyboard:

ipconfig /all

The command displays all of the current TCP/IP network connections and detailed technical information about each. To find your network adapter's MAC address, identify the network adapter's name from the Description field and then check the Physical Address field, as illustrated in the screenshot below.

7 ways to find your MAC address in Windows

Run ipconfig /all to find your MAC address

As you can see, the ipconfig /all command outputs a lot of information. It can be cumbersome to find your MAC address that way. That's why, next, we show you a way to extract only the MAC address from the flood of details shown by ipconfig. If you want to filter only the MAC addresses of your network adapters, run the following command:

ipconfig /all | findstr "Description Physical"

The command looks for and displays only the two lines that are relevant for our search: Physical Address and device Description, for each adapter. The result should look something like this:

7 ways to find your MAC address in Windows

Get MAC addresses only, with the command: ipconfig /all | findstr "Description Physical"

4. How to find your MAC address using the “wmic nic get” command in Windows Terminal, PowerShell, and Command Prompt

Another command that you can use in a command-line interface to find the MAC addresses of your physical network adapters is:

wmic nic where PhysicalAdapter=True get MACAddress,Name

Run it in Windows Terminal, PowerShell, or Command Prompt, and it tells you the MAC addresses of all your physical network adapters. This displays, thus far, the most easy-to-read result:

7 ways to find your MAC address in Windows

The displayed list is easier to read

5. How to get your MAC address in Windows using the Settings app

Let’s move away from command-line interfaces and describe a few methods of finding your MAC address from Windows itself. If you're using Windows 10 or Windows 11, you can find your MAC address from the Settings app. Since the method is slightly different depending on the Windows version you’re using, we treat the two operating systems separately, starting with Windows 11.

Identify your MAC address using Settings in Windows 11

In Windows 11, open Settings (for example by pressing Windows + I on your keyboard) and then go to Network & Internet. Scroll down to Advanced Network Settings and click on it.

7 ways to find your MAC address in Windows

Click or tap on Advanced network settings to view all active network adapters and more

This presents you with a list of all network adapters on your device. Scroll down to Hardware and connection properties and click on it.

7 ways to find your MAC address in Windows

The Hardware and connection properties link displays useful information on all connections and adapters

The list that you now see contains detailed information on every single network adapter installed on your device. Scroll down to the one you’re interested in and check the value of its Physical Address (MAC) field. You can even select the value, then copy and paste it if needed.

7 ways to find your MAC address in Windows

Scroll through the page and identify the adapter, then look for its MAC address

Alternatively, if you don’t want to scroll through the entire list, go back to the Advanced network settings page and click on the adapter you’re interested in, then click on View additional properties.

7 ways to find your MAC address in Windows

View additional properties for the selected network connection

Here, look for the field named Physical Address (MAC) and check its value.

7 ways to find your MAC address in Windows

The MAC address should be towards the bottom of the page

Identify your MAC address using Settings in Windows 10

Just like in Windows 11, in Windows 10, you start by opening the Settings app and going to the Network & Internet section.

7 ways to find your MAC address in Windows

Access Network & Internet section of the Settings app in Windows 10

Now, look for the “View hardware and connection properties” link and click on it.

7 ways to find your MAC address in Windows

Scroll down and click/tap on the View hardware and connection properties link

This action displays detailed information about every network adapter found in the system. Locate the adapter you are interested in by looking at the Description field value, then check its Physical Address (MAC) field for the information you need.

7 ways to find your MAC address in Windows

Identify the adapter, then look for the Physical address (MAC) field

Alternatively, if you only want to know the MAC address of the network adapter that is currently connected, go back to the Network & Internet section and click on the Properties button for your active connection, as shown below.

7 ways to find your MAC address in Windows

Click on Properties to find the MAC address of your active network adapter

As always, look for the Physical Address (MAC) field to find the information you need.

7 ways to find your MAC address in Windows

You can find many details, including the MAC address, in the Properties section

TIP: In both operating systems, you can use the Win X menu to get to the Network & Internet section of the Settings app. Simply press Windows + X on your keyboard, then select Network Connections.

6. Find the MAC address of any of your network adapters using System Information

Another way to view the MAC address for any network adapter installed on your device is by opening System Information. One way to do it is by using Windows Search to look for sysinfo, then clicking or tapping on the System Information search result. After opening it, in the left pane, double-click or double-tap on Components, then on Network, and finally click or tap on Adapter. This displays a list of every adapter present on your system, along with detailed information for each. First, use the Name field value to identify the adapter you’re looking for, then look for the MAC Address field to find the address.

7 ways to find your MAC address in Windows

Get the MAC address of your network adapter using the System Information tool

7. How to find the MAC address of the active network adapter from the Control Panel

If you prefer the old way of doing things, you can find the MAC address of active network adapters from the venerable Control Panel. Open it and click or tap on the “View network status and tasks” under “Network and Internet.”

7 ways to find your MAC address in Windows

View network status and tasks in the Control Panel

This opens the Network and Sharing Center. Look at the “View your active networks” section from the top-right area of the window. There, you should see the name of each of your active network connections and, on their right side, several details about them. The line named Connections shows Ethernet if you are using a wired network connection. If you're using a wireless network connection, it says Wi-Fi, followed by the name of the network to which you are connected. Click on the link near Connections, as shown in the screenshot below.

7 ways to find your MAC address in Windows

The active network connections are shown in the Network and Sharing Center

The Status window for your network adapter is now displayed. Click or tap on the Details button.

7 ways to find your MAC address in Windows

Click on the Details button

The Network Connection Details window is displayed. Here, you can see extensive details about your network connection, including the IP address, DNS servers addresses, and more. The MAC address is displayed in the Physical Address line highlighted in the screenshot below. You can copy and paste all the information displayed in this window, using the Ctrl + C / Ctrl + V shortcuts on your keyboard.

7 ways to find your MAC address in Windows

The Physical Address is the MAC address of the network adapter

TIP: Did you know you can change (spoof) your MAC address? Here is an article showing you seven ways to change or spoof the MAC address in Windows and an article on how to restore the original MAC address of your network card.

Do you know other ways of finding the MAC address in Windows?

As you can see, Windows offers multiple methods for finding the MAC address of any network adapter. The methods shown in this article are the easiest we know, using only tools and commands that are available in Windows. If you know other ways to find the MAC address of a network adapter, do not hesitate to share them in the comments section.

Sign up and earn $1000 a day ⋙

How to pin comments on TikTok

How to pin comments on TikTok

How to pin comments on TikTok, TikTok allows users to pin comments easily. Here's how to pin comments on TikTok videos.

Instructions for Organizing a Q&A session on Facebook

Instructions for Organizing a Q&A session on Facebook

Instructions for Organizing a Q&A session on Facebook, Recently, Facebook has launched the feature to create a Q&A session, when you post a question for everyone to answer.

Instructions for installing and recording videos with Likee

Instructions for installing and recording videos with Likee

Instructions for installing and recording videos with Likee, Likee is an application that supports extremely beautiful and impressive video recording, and is loved by many young people today. The following,

How to export the list of meeting participants in Zoom

How to export the list of meeting participants in Zoom

How to export the list of meeting participants in Zoom, How to take attendance on Zoom is not difficult, it even allows you to export the list of students participating in the class.

How to change font on Xiaomi

How to change font on Xiaomi

How to change font on Xiaomi, Want to create a new image for Xiaomi device? Just follow the instructions below to change the font style and size above

Instructions for creating a mirror image effect on Picsart

Instructions for creating a mirror image effect on Picsart

Instructions for creating a mirror image effect on Picsart, Picsart is an application where users only need to perform a few simple steps to transform the photo.

How to add new fonts to Microsoft Word

How to add new fonts to Microsoft Word

How to add new fonts to Microsoft Word, Can't find the font you want to use for documents in Microsoft Word? Don't worry, you can install new fonts for Word according to these steps

How to turn off the computer screen and still keep the computer running

How to turn off the computer screen and still keep the computer running

How to turn off the computer screen and still have the computer running, How to turn off the PC screen and still have the computer running on Win 10/11? Very simple. Here's how to turn off the computer screen

How to fix facebook error logging in 3/2024

How to fix facebook error logging in 3/2024

To fix the “An unexpected error occurred” issue when logging in to Facebook, you can try the following steps

Cant access Facebook, Messenger and Instagram, how to fix it immediately

Cant access Facebook, Messenger and Instagram, how to fix it immediately

Users reported that their Facebook, Messenger and Instagram accounts were suddenly logged out and could not be accessed again, both on the app and web version.

Instructions on how to take photos on Tiktok are extremely simple

Instructions on how to take photos on Tiktok are extremely simple

Instructions on how to take photos on Tiktok are extremely simple. Tiktok is a famous application for recording and creating short videos on social networks. However, this application also

How to find and get Instagram links

How to find and get Instagram links

How to find and get Instagram links, Instagram is one of the most popular and easy-to-use social networking platforms today. However, because it is designed specifically for mobile,

Instructions for locking the mouse cursor when playing games on BlueStacks

Instructions for locking the mouse cursor when playing games on BlueStacks

Instructions for locking the mouse cursor when playing games on BlueStacks, Instructions for turning on/off the mouse cursor lock feature when playing games in the BlueStacks App Player emulator.

Instructions for installing and using Faceapp using an emulator on PC

Instructions for installing and using Faceapp using an emulator on PC

Instructions for installing and using Faceapp using an emulator on PC, Simple and easy instructions on how to install and use the Faceapp face editing app using an emulator on PC

Instructions for creating a cover photo group on Facebook

Instructions for creating a cover photo group on Facebook

Instructions for creating a cover photo group on Facebook, Creating a cover photo group is a feature that helps users set Facebook cover photos with many different images (maximum of 6 photos).

Mastering Technical Analysis with the Stochastic Indicator on Bubinga

Mastering Technical Analysis with the Stochastic Indicator on Bubinga

Learn how to effectively use the Stochastic Indicator for technical analysis on Bubinga. Explore advanced techniques to enhance your trading strategies

Instructions for adding angel wings to photos using PicsArt

Instructions for adding angel wings to photos using PicsArt

Instructions for adding angel wings to photos using PicsArt, PicsArt is a photo editing application used by many people today. Today WebTech360 will introduce the article

How to turn off the Just accessed notification on Zalo

How to turn off the Just accessed notification on Zalo

How to turn off the Just accessed notification on Zalo. This article WebTech360 will guide you to turn off the Just accessed notification under your Zalo chat name.

Instructions for blocking and unblocking accounts on TikTok

Instructions for blocking and unblocking accounts on TikTok

Instructions for blocking and unblocking accounts on TikTok. Similar to other social networking applications, TikTok also allows users to block someone's account

How to write a long status with a colorful background on Facebook

How to write a long status with a colorful background on Facebook

How to write a long status with a colorful background on Facebook, Today, WebTech360 will introduce some steps to post a long status with a colorful background on Facebook,