Using PowerCLI 5.0 how would I get this script to specify if a 4.1 host is ESX or ESXi?
Get-VMHost | Select Name,Version,@{N="Lockdown";E={$_.Extensiondata.Config.adminDisabled}}, @{N="Version";E={$_.Summary.Config.Product.FullName}}
The Version command only comes back with 4.1.0 and I need the FullName to show if it's an ESX or ESXi box.
Thanks!