Project

General

Profile

$wmiquery » History » Revision 10

Revision 9 (Per Amundsen, 08/10/2015 08:54 AM) → Revision 10/12 (Per Amundsen, 07/07/2017 08:54 PM)

_Added in 1.9.7_ 

 *$wmiquery([path], query, [N], N|key)* key)* 

 Performs a "WMI":https://msdn.microsoft.com/en-us/library/aa394582%28v=vs.85%29.aspx query and return the Nth value. 

 *Parameters* 

 [path] - Optional path. 
 query - Query to perform. 
 [N] - If 0, numbers of results else the Nth value (optional, default is 1) 
 N|key key - The key to get or the Nth key. 

 *Properties* 
 .key - Returns the name of the Nth key if N|key is a number. get. 

 *Example* 

 <pre> 
 ; Prints the cpu l2 cache 
 //echo -ag l2 cache is $wmiquery(SELECT * FROM Win32_Processor, L2CacheSize) 
 </pre>