WMIQUERYNot in LE
Print Topic  Return to Overview  Previous Topic  Next Topic 
Purpose:Query the Windows Management Interface

 

Format:WMIQUERY [/A /B /C /H] namespace "query string" [index]

 

/A(ll instances)/C(lasses)        
/B(lank)/H(eader)

 

namespaceThe namespace to query        
"query string"WQL query string
indexClass instance

 

Usage:

 

You can use a single period . for namespace to default to root\cimv2.

 

For more details on what is available, see the WMI and WQL documentation on MSDN (msdn.microsoft.com), and download the "WMI Code Creator" from Microsoft and browse the available namespaces, classes, and properties.

 

For example, to query the name property from the Win32_Processor class:

 

wmiquery root\cimv2 "SELECT name FROM Win32_Processor"

 

To query available classes:

 

wmiquery /A root "select name from __namespace"

 

Options:

 

/A Display all class instances starting at "index".

 

/BSeparate class instances with a blank line.

 

/CDisplay all the matching class names for the specified namespace. "query string" is the filter to apply to the returned values; it can contain wildcards.  For example:

 

wmiquery /c . "win32_q*"

 

/HDisplay a header for class instances.

 

Topic "wmiquery.htm" last edited 4/28/2008. ©2008  JP Software, Inc.
Keywords: WMIQUERY