How do I locate the MAC address of my computer?

I am unable to locate the MAC address in a new computer with Windows 7. I've tried ipconfig /all in the console to which I got no items match your search. I also tried getmac. A screen flashed very briefly with what appeared to be the information, but it was not there long enough to read.


Solution 1:

You have probably typed that into the Start Menu search dialog, which does execute the command but doesn't show it as the command prompt window disappears as soon as the command has been executed. This is the normal bahavior of command prompt applications, they close as soon as it is done.

In order for the command prompt to stay, you have to run those commands through the command prompt. The command prompt doesn't disappear after execution of a program; so, you can see the output as a result.

  1. Click the Start Button or press the Windows key.

  2. In the start menu search, type cmd.

  3. Hit Enter to execute the command prompt, or click on the cmd entry that appears.

  4. Type in ipconfig /all or getmac and it should execute both commands and the window will remain open such that you can see the output.

Note: getmac is great for just mac addresses ipconfig is good for ip addresses and ipconfig /all is great for IP address and a lot of other useless info (like unused connections)

to use getmac

  1. type cmd in the search box and press enter or run window (windows logo + r)
  2. then type getmac (no ipconfig necessary, in fact that wont work) and let it run (it may take a few seconds to rertrieve the info)

if you use ipconfig and ipconfig dose not have enough info use ipconfig /all

Solution 2:

A simple way to get the MAC address(es) of your network adapter(s):

On a command prompt type

getmac

Example:

getmac mac address of network adapter

Solution 3:

For Windows Vista and Windows 7, in the control panel:

Open the Network and Sharing Center > Local Area Connection > Details > Physical Address.

Network and Sharing Center MAC address

Solution 4:

You can also locate the MAC address using VBScript:

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select MACAddress from Win32_NetworkAdapter where DeviceID=1")
For Each objItem in colItems
    Wscript.Echo "MAC Address: " & objItem.MACAddress 
Next

Solution 5:

You can use the Get-NetAdapter PowerShell cmdlet.

It displays a nice table that identify each network interface with its MAC address.

enter image description here