POSTS List VMs with Non Thick Disks April 29, 2010 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 foreach ($vm in Get-VM) { $badFormat = $false foreach ($hardDisk in (Get-HardDisk -VM $vm)) { if ($hardDisk.StorageFormat -ne "Thick") { $badFormat = $true } } if ($badFormat) { $vm.Name } } Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus