Getting the IP addresses of running VMs
April 23rd, 2014 by Charlie Russel and tagged Hyper-V, Networking, PowerShell
Ben Armstrong posted a great little tip on his blog the other day. He has a little one-line PowerShell command that gives you a listing of all the running VMs on a host, and the IP addresses being used by each of them. Get-VM | ?{$_.State -eq “Running”} Get-VMNetworkAdapter | Select VMName, IPAddresses […]
Posted in Hyper-V, PowerShell | Comments Off on Getting the IP addresses of running VMs