How can I find the network card mac address in Windows (7)?
5 Answers
why not just try:
getmac /v
KISS Principal at play!

- 3,104
- 1
- 22
- 16
-
This is a much better solution than anything here. – phuzion Aug 18 '09 at 11:31
-
Indeed it is and I forgot all about that. We have had some problems using that in scripts before which is why we tend to use another method, but I think that was dodgy scripting rather than anything serious. – Kip Aug 18 '09 at 12:27
-
Works really well compared to the other solutions, thanks! – dodgy_coder Jul 01 '13 at 09:57
I think it applies to any windows.
- Open command window: [Win] + R, type CMD - press Enter
- Type ipconfig /all
You will see all required info.

- 645
- 3
- 9
We use the MAC address in combination with Wake On Lan methods to power on machines remotely for updates etc etc.
Because no one thought to get MAC addresses before rolling out machines and we have no auto asset DB it was going to be a bit of a slow process to gather all the MAC addresses.
So I wrote this simple line that goes in the login script
ipconfig /all | find /i "physical address" > \\server\share\%computername%.txt
This will enter the mac address of the current logging in machine to a file in a shared area with the filename set as the computer name. Obviously you can use this how you want but is a nice method of collecting data.

- 897
- 1
- 12
- 22
-
I think you need something a bit more robust that just this. Often there are multiple network cards on a computer, each with their own mac address (WiFi, Ethernet, Bluetooth, ...) so in this case all are listed, even if they are not active. – dodgy_coder Jul 01 '13 at 09:29
Click start,
Click 'RUN'
In the box that appears type CMD and click 'OK' In the black window that appears on screen type
ipconfig /all
Hit return
Information about all of your network adapters will be returned. The MAC address is listes as 'Physical Address'
Type
exit
and hit return to end the session

- 4,092
- 1
- 30
- 38
If you prefer a GUI method,
- Open Network Connections (in Control Panel)
- Double-click your connection icon (e.g. Local Area Connection) - or right click and choose Status
- Click the Support tab
- Click the Details button
The MAC address is listed as the Physical Address in this window.

- 3,051
- 22
- 28