-
Find location of your VMs
Ok so now you have many, many VMs running on your Hyper-V hosts. You wanna know where are they actually running from… I mean on which SAN, which LUN or which local disk array are they running. There is no easy way to find out that information from the VMM Manager console. You can open up the properties of each and every VM and look at the config but it is not practical. PowerShell to the rescue! Here is a small PS code snippet which will show you the information quickly. Get-VM –ComputerName HOSTNAME1, HOSTNAME2 | Get-VMHardDiskDrive | Select-Object -Property VMName, ComputerName, ControllerType, Path | Sort-Object -Property VMName | Out-GridView…