Overview
Get all properties of a specified local WMI class. This command is useful for understanding the structure and available properties of WMI classes before querying their instances.Syntax
Parameters
The WMI class to query (e.g., “SMS_Authority”)
The WMI namespace to query (default: “root\CCM”)
Examples
Output Format
The command outputs all properties with their data types:Common Data Types
| Type | Description |
|---|---|
| String | Text data |
| UInt32 | 32-bit unsigned integer |
| Boolean | True/false value |
| DateTime | Date and time value |
| Object | Complex object reference |
Use Cases
Query Planning
Query Planning
Before running complex queries, use this command to understand what properties are available for filtering and selection.
Data Type Validation
Data Type Validation
Verify data types of properties to ensure proper formatting in WHERE conditions and property selections.
Class Schema Discovery
Class Schema Discovery
Explore the schema of WMI classes to understand their structure and relationships.
Related Commands
local classes- List available WMI classeslocal class-instances- Get instances of a WMI classlocal query- Execute custom WQL queries with specific properties