FROM: IT Walk Thru: Finding all VMs with thick hard drives
Found this PowerCLI code very helpful!
Thanks Benj
IT Walk Thru: Finding all VMs with thick hard drives:
Get-VM | Get-HardDisk | where-object {$_.StorageFormat -eq 'Thick'} | select-object -expandproperty Parent -unique | sort
Thanks Benj
IT Walk Thru: Finding all VMs with thick hard drives:
Get-VM | Get-HardDisk | where-object {$_.StorageFormat -eq 'Thick'} | select-object -expandproperty Parent -unique | sort
Comments
Post a Comment