Find you MAC address
One task I find myself doing on a regular basis is checking the physical address of a NIC. Ipconfig is OK but we have to wade through a lot of stuff. Much simpler to do this
Get-WmiObject -Class Win32_NetworkAdapter -ComputerName "." |
select Name, MACAddress
Produces a nicely formatted output and its quick to type