Summary: Use Windows PowerShell to find WMI classes that contain a specific property.
Image may be NSFW.
Clik here to view. How can I use Windows PowerShell to help find a WMI class that contains a specific property?
Image may be NSFW.
Clik here to view. Use the Get-CimClass cmdlet in Windows PowerShell 3.0, and use the specific property name or a wildcard pattern to help you find the class:
Get-CimClass -PropertyName version
Get-CimClass -PropertyName *acl*
Image may be NSFW.
Clik here to view.
Clik here to view.
