Summary: Use a Windows PowerShell Common Information Model (CIM) cmdlet to find WMI classes.
I want to find Windows Management Instrumentation (WMI) classes that are related to a particular technology. How can I find such classes easily ?
Use the Get-CimClass cmdlet and use a wildcard for the name. Specify the Dynamic parameter to help filter classes. Here is an
example command:
Get-CimClass -ClassName *bios* -QualifierName dynamic