This Blog is to share our knowledge and expertise on Linux System Administration and VMware Administration

Wednesday, November 1, 2017

How to get the Old Hardware VM Version list with Powercli command?

Execute the  below command with the cluster name and required hardware version that all.

Get-Cluster "Cluster Name" | Get-VM | Get-View | Where {$_.Config.Version -ne "vmx-09"} |  Select Name

Hope it is useful.

No comments:

Post a Comment