#List-WMIProperties.ps1 $class=Read-Host "Enter a Win32 WMI Class that you are interested in" $wmi=get-WMIObject -class $class -namespace "root\Cimv2" $wmi | get-member -membertype properties | where {$_.name -notlike "__*"} | select name