Locating the Media Access Control address on a Windows 10 machine is a common requirement for network troubleshooting, security audits, and device configuration. This unique identifier is hardcoded into your network interface card and serves as a fingerprint for your hardware on any local network. Whether you are a home user securing your Wi-Fi or an IT professional documenting assets, knowing how to find this address is a fundamental skill.
Understanding the MAC Address
The Media Access Control address is a 12-digit hexadecimal number, such as 01-23-45-67-89-AB, burned into the firmware of your network adapter. It operates at the data link layer of the OSI model, allowing physical devices to communicate on a local segment. While the Internet Protocol address changes based on your network location, the MAC address remains constant, making it ideal for persistent identification. You might need to find it to filter devices on a router, register a device on a corporate network, or diagnose a connection issue where the system name is not resolving correctly.
Using the Settings App
The modern Settings interface in Windows 10 provides the most straightforward path to view network details. This method is ideal for users who prefer a graphical environment over typing commands. The steps guide you through the stack of the operating system to the specific adapter properties without requiring administrative privileges.
Step-by-Step via Settings
Press the Windows key + I to open the Settings menu.
Click on "Network & Internet" to open the configuration panel.
Select "Status" from the left-hand menu, then scroll down and click on "View hardware and connection properties."
The page that loads displays your "Physical address (MAC)" alongside the active network connection name.
Command Prompt and PowerShell
For users who prefer efficiency or need to retrieve this information remotely, the command line offers powerful tools. Both Command Prompt and PowerShell can query the Windows networking stack directly. The advantage of this method is its speed and the ability to copy the output instantly for documentation or scripting purposes.
Executing Commands
Right-click the Start button and select "Windows Terminal (Admin)" or "Command Prompt."
Type getmac and press Enter to list all physical addresses for every network adapter on the system.
To target a specific connection, use getmac /v /fo list to display detailed information in a list format.
Network Connection Status Dialog
Windows maintains a detailed connection log for every active network adapter. This dialog box aggregates the current status and provides a direct path to the technical details, including the MAC address. It is a quick method that avoids navigating through multiple menus or opening additional windows.
Accessing the Adapter Properties
Right-click the network icon in the system tray (Wi-Fi or Ethernet).
Select "Open Network & Internet settings."
Click "Change adapter options" on the right side of the new window.
Right-click your active connection and choose "Status."
Click the "Details" button, and locate the "Physical Address" entry in the new properties window.
Device Manager Inspection
Device Manager is the central hub for managing hardware drivers and resources on a Windows PC. While it does not display the MAC address in the main list, it allows you to drill down into the specific network adapter's properties. This method is particularly useful if you are updating drivers or troubleshooting hardware conflicts simultaneously.