I am trying to list all available fields in a WMI class using C #.
The closest I have is listing all the available table equivalents in WMI
ManagementObjectSearcher searcher = new ManagementObjectSearcher("select * from meta_class"); foreach (ManagementClass wmiClass in searcher.Get()) { Console.WriteLine(wmiClass["__CLASS"].ToString()); }
However, there seems to be no equivalent for fields.
Is this possible or is it just looking for a reference guide to view all the available fields?
source share