Hello, twindude-
Looks like the property on a host object that corresponds to the DirectPath I/O "supported" or "not supported" is in the Capability property. So, something like the following should get the info that you are after:
Get-VMHost | Select Name, @{n="DirectPathIOSupported"; e={$_.ExtensionData.Capability.VmDirectPathGen2Supported}}
The output would be something like:
Name |
DirectPathIOSupported |
---- |
--------------------- |
myhost0.dom.com |
True |
How does that do for you?