$wmiquery » History » Version 6
Per Amundsen, 07/01/2015 05:05 AM
1 | 1 | Per Amundsen | _Added in 1.9.7_ |
---|---|---|---|
2 | |||
3 | 6 | Per Amundsen | *$wmiquery(query, [N], key)* |
4 | 1 | Per Amundsen | |
5 | Performs a "WMI":https://msdn.microsoft.com/en-us/library/aa394582%28v=vs.85%29.aspx query and return the N'th key. |
||
6 | |||
7 | *Parameters* |
||
8 | |||
9 | query - Query to perform. |
||
10 | 6 | Per Amundsen | [N] - If 0, numbers of results else the N'th match (optional, default is 1) |
11 | 1 | Per Amundsen | key - The key to get. |
12 | |||
13 | *Example* |
||
14 | |||
15 | <pre> |
||
16 | 3 | Per Amundsen | ; Prints the cpu l2 cache |
17 | 5 | Per Amundsen | //echo -ag l2 cache is $wmiquery(SELECT * FROM Win32_Processor, L2CacheSize) |
18 | 1 | Per Amundsen | </pre> |