Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home » Networking

How to Find MAC Address on PC

Anup ThapaBy Anup ThapaFebruary 8, 2023
how to find mac address on pc

A MAC address is a 12-character hexadecimal number (e.g., D8-BB-C1-A0-FC-23) assigned to Network Interface Controllers (NICs). It’s also called a physical address or hardware address.

Every NIC has a unique MAC address, which means it can be used to identify devices on a network. You can also use this ID for other tasks like limiting the bandwidth for certain devices, or restricting network access entirely.

I’ll cover various ways to find the MAC Address of your PC in this article. If your current setup doesn’t allow for certain methods, you can go with different ones. I’ll also explain how you can get the MAC addresses of other devices on the network.

Table of Contents

  • Check the Sticker
  • Through Windows Settings
  • Through Control Panel
  • Through Command Prompt
    • Getmac
    • IPConfig
    • Get-NetAdapter
    • Netsh
    • WMIC
  • How to Find Devices MAC Addresses on Your Network?

Check the Sticker

The MAC address is usually physically printed on the hardware. This applies to PCI network cards, USB wireless adapters, as well as other devices like routers, printers, etc.

network adapter sticker

Thus, the most obvious way to find a device’s MAC address is to physically check the device.

Through Windows Settings

Opening up the PC case to get a close look at the NIC isn’t exactly convenient, particularly with laptops. USB network adapters won’t always have the MAC address physically printed either. In such cases, you can easily check the MAC Address via Windows Settings.

  1. Press Win + I and click on Network & internet.
  2. Click on Properties and scroll down to the Physical address (MAC) section.
    windows-settings-physical-address-mac

Through Control Panel

You can use the Network Connections control panel applet if you want to find the MAC address of other network adapters.

  1. Press Win + R, type ncpa.cpl, and press Enter.
  2. Right-click the network adapter that you want to check and select Status.
    network-adapter-status
  3. Click on Details and check the physical address.
    ethernet-connection-physical-address

Through Command Prompt

You can use the command prompt to find the MAC address of devices through several commands.

Getmac

The getmac command is the easiest way to get MAC addresses from the command line. Use it with the verbose option as shown below:

  1. Press Win + R, type cmd, and press Enter.
  2. Type getmac -v and press Enter.
    getmac-verbose

IPConfig

The ipconfig utility lets you interact with various network configurations in Windows. It’s most commonly used to check the device’s IP address. When it’s used with the /all parameter, it’ll display the full TCP/IP configuration for adapters, which includes the MAC address.

  1. Press Win + R, type cmd, and press Enter.
  2. Type ipconfig /all and press Enter.
    ipconfig-all-physical-address
  3. Look out for the physical address to get your device’s MAC address.

Get-NetAdapter

As the name implies, Get-NetAdapter is a PowerShell cmdlet that lists network adapters along with some basic properties. To use it,

  1. Press Win + R, type powershell, and press Enter.
  2. Type Get-NetAdapter and press Enter.
    get-netadapter-mac-address

Netsh

Netsh is a versatile scripting utility that’s used for modifying network configurations. One of the simpler uses of netsh is to list the network interfaces and their various properties.

  1. Press Win + R, type cmd, and press Enter.
  2. To get the MAC address of wired interfaces, use
    netsh lan show interfaces
    netsh-lan-show-interfaces
  3. To get the MAC address of wireless interfaces, use
    netsh wlan show interfaces
    netsh-wlan-show-interfaces

WMIC

WMIC is the CLI version of Windows Management Instrumentation (WMI) which is commonly used for system administration. WMIC can be used to retrieve different types of info, including the MAC address of NICs. The traditional way to do this is from the command prompt.

  1. Press Win + R, type cmd, and press Enter.
  2. Enter wmic nic get name,macaddress,deviceid,manufacturer.
    wmic-nic-get-name-macaddress-deviceid-manufacturer

WMIC is deprecated as of Windows version 21H1 and is superseded by Windows PowerShell for WMI. In case the earlier command stops working in the future, you can use the PowerShell versions instead.

  1. Press Win + X and select PowerShell or Terminal.
  2. Enter Get-WmiObject -Class CIM_NetworkAdapter.
    get-wmiobject-class-cim-networkadapter
  3. You can pipe the output like this for better formatting:
    Get-WmiObject -Class CIM_NetworkAdapter | Format-Table -Property DeviceID,Name,MACAddress,Manufacturer
    wmi-object-network-adapter-mac-address

You can also use Common Information Module (CIM) cmdlets instead of WMI cmdlets to access WMI. This is often a better alternative as CIM cmdlets can work on non-Windows machines as well.

Get-CimInstance -ClassName CIM_NetworkAdapter | Format-Table -Property DeviceID,Name,MACAddress,Manufacturer

get ciminstance classname cim networkadapter

How to Find Devices MAC Addresses on Your Network?

The ARP cache contains tables that store IP addresses and their mapped MAC addresses. Checking the ARP cache tables with arp -a is the easiest way to find the hardware addresses of other devices on the network.

display arp cache table

If this doesn’t work initially, you can manually ping the device, then check the ARP cache again.

An alternative method is to find MAC addresses by checking the router’s clients list. Here’s how you can do this:

  1. Use ipconfig as done earlier and note the Default Gateway.
    ipconfig-router-ip
  2. Open a web browser and enter this IP address into the URL bar.
  3. Enter your router credentials to log in to the router management console.
  4. In the Status, Network Map, or similar tab, you should see the list of clients along with their IP and MAC addresses.
    router-clients-list
  5. You can also go to the DHCP tab and check the clients list there.
    dhcp-client-list
how-to
Anup Thapa
  • Instagram
  • LinkedIn

Anup Thapa primarily covers Windows systems, networking, and computer hardware at TechNewsToday. Anup has been writing professionally for almost 5 years, and tinkering with PCs for much longer. His love for all things tech started when he got his first PC over 15 years ago. It was a Pentium IV system running Windows XP on a single 256 MB stick. He spent his formative years glued to this PC, troubleshooting any hardware or software problems he encountered by himself. Professionally, Anup has had brief forays into a variety of fields from coding and hardware installation to writing. In doing so, he's worked with people of different backgrounds and skill levels, from average joes to industry leaders and experts. This has given him not just a versatile skill set, but also a unique perspective for writing that enables him to concisely communicate complex information and solve his reader's problems efficiently. You can reach out to him at anup@technewstoday.com.

Related Posts

intel wireless ac 9560 not working

Intel Wireless AC 9560 Not Working? Try these Fixes

September 16, 2023
does your ip address change when you move

Does Your IP Address Change When You Move?

July 16, 2023
locate wifi access point

How to Locate a Wi-Fi Access Point

July 6, 2023
lease time dhcp

What is DHCP Lease time? Can You Change It?

July 2, 2023
Failed to obtain IP address 1

5 Ways to Fix “Failed to Obtain IP Address”

June 30, 2023
How to Forget a Network

How to Forget a Network on Windows

June 27, 2023
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
how to turn off hardware acceleration

How to Turn Off Hardware Acceleration

September 22, 2023
motherboard chipset

Understanding Motherboard Chipset and Its Importance

September 20, 2023
Naval-Warfare-Games

Best Naval Warfare Games

September 18, 2023
You may also like
printer-not-printing

How to Fix a Printer That’s Not Printing

September 20, 2023
Share Location With Friends and Family

Share Location With Friends and Family (iPhone and Android)

September 18, 2023
how-to-print-without-a-printer

How to Print Without a Printer

September 18, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Our Team
  • Editorial Guidelines
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday, editor@technewstoday.com | Tech Central Pvt. Ltd.

Type above and press Enter to search. Press Esc to cancel.