Finding MAC Addresses

by Feb 23, 2011

You can use the network adapter MAC address to wake a computer. Use this line if you want to find the MAC addresses of your network adapters:

Get-WmiObject Win32_NetworkAdapter | Where-Object { $_.MacAddress } |
Select-Object Name, MacAddress

Twitter This Tip!
ReTweet this Tip!