I'm building a C# monitor app which uses WMI to grab some performance details of a remote computer. What are some good WMI queries to grab helpful stats such as CPU load, RAM usage, HDD free space, etc.
For example, you can get the CPU load from the property "LoadPercentage" with the query "SELECT * FROM Win32_Processor".
What are some other useful properties & queries?