VMware, find a VM’s MAC address via PowerCli

Issue: You have a few thousand VMs running on vCenter and need a quick way of finding a VMs particular MAC address. Resolution: Open PowerCLi and use Connect-Viserver to connect to the VC you are searching. Then run: Get-VM | Get-NetworkAdapter | Where-Object {$_.MacAddress -eq “00:50:56:01:07:65”} | Format-List -Property *...Read more