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

Wednesday, October 28, 2015

How to Get the ESXi Hosts along with Specific Version by using Powercli?

Use the below Powercli command to get the Esxi Hosts version. 

get-vmhost | where-object { $_.version -eq "4.1.0" } | select name,version

No comments:

Post a Comment