Get a list of assigned IPs and Host name from System Center Virtual Machine Manager IP Pool

Run from Virtual Machine Manager PowerShell Console:

 

$IPpool = Get-SCStaticIPAddressPool "my_ip_pool"
Get-SCIPAddress -StaticIPAddressPool $IPpool | ft -property Address,Description,AssignedToType,State

Leave a comment