How i can find VM with particular Hardware Version?
Well, read below!
Easy with PowerCli
With the command below you can find all VM with Hardware Version different from “VMX-09”)
get-vm | Get-View | select Name,@{Name="Hardware Version"; Expression={$_.Config.Version}} | where {$_."Hardware Version" -ne "vmx-09"}
No Comments Yet