I am creating a C # monitor application that uses WMI to capture some performance characteristics of a remote computer. What are some good WMI queries for getting useful statistics like CPU usage, RAM usage, free hard disk space, etc.
For example, you can get the processor load from the "LoadPercentage" property with the query "SELECT * FROM Win32_Processor".
What other useful properties and queries?
source
share