Skip to content

Instantly share code, notes, and snippets.

@alanrenouf
Created March 10, 2016 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanrenouf/a4caacfa91bd47e2b78e to your computer and use it in GitHub Desktop.
Save alanrenouf/a4caacfa91bd47e2b78e to your computer and use it in GitHub Desktop.
Check Cluster VMX Supported versions
$cluster = Get-Cluster CLU1
(Get-View $cluster.ExtensionData.EnvironmentBrowser).QueryConfigOptionDescriptor()
@alanrenouf
Copy link
Author

Sample Output:

PowerCLI C:\> $cluster = Get-Cluster CLU1
(Get-View $cluster.ExtensionData.EnvironmentBrowser).QueryConfigOptionDescriptor()


Key                 : vmx-03
Description         : ESX 2.x virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : False
DefaultConfigOption : False
RunSupported        : False
UpgradeSupported    : False
LinkedView          : 

Key                 : vmx-04
Description         : ESX 3.x virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : True
DefaultConfigOption : False
RunSupported        : True
UpgradeSupported    : True
LinkedView          : 

Key                 : vmx-07
Description         : ESX/ESXi 4.x virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : True
DefaultConfigOption : False
RunSupported        : True
UpgradeSupported    : True
LinkedView          : 

Key                 : vmx-08
Description         : ESXi 5.0 virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : True
DefaultConfigOption : False
RunSupported        : True
UpgradeSupported    : True
LinkedView          : 

Key                 : vmx-09
Description         : ESXi 5.1 virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : True
DefaultConfigOption : False
RunSupported        : True
UpgradeSupported    : True
LinkedView          : 

Key                 : vmx-10
Description         : ESXi 5.5 virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : True
DefaultConfigOption : False
RunSupported        : True
UpgradeSupported    : True
LinkedView          : 

Key                 : vmx-11
Description         : ESXi 6.0 virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : True
DefaultConfigOption : False
RunSupported        : True
UpgradeSupported    : True
LinkedView          : 

Key                 : vmx-12
Description         : Workstation 12 virtual machine
Host                : {HostSystem-host-51, HostSystem-host-72}
CreateSupported     : True
DefaultConfigOption : False
RunSupported        : True
UpgradeSupported    : True
LinkedView          : 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment