Saved Bookmarks
| 1. |
Solve : Batch File and WMIC command? |
|
Answer» Hello, The Windows Management Instrumentation Command-line (WMIC) is a command-line and scripting interface that SIMPLIFIES the use of Windows Management Instrumentation (WMI) and systems managed through WMI. WMIC is based on aliases.Therefore MS is your best source of information. https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/wmic.mspx Quote Without using aliases, you can use the same options with the CLASS command. For example, CLASS Win32_Process GET Name, HANDLE, PageFaults. However, you must determine the name of the class from other SOURCES. To do the equivalent of the alias Where clause, you must use PATH Win32_Process.Description="explorer.exe".Hope that helps you. |
|