How to get methods from WMI
问题 tl;dr What should I SELECT instead of * in order to get the methods? More info: Here's an example: using (var s = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM someClass")) foreach (var obj in s.Get()) If I just ask for one property it's not enough - I get an exception when trying obj.InvokeMethod(...); . If I ask for * it is enough but I rather avoid this if possible. I don't see any property for getting the methods (- Disable , Enable ,...) in the docs for WMI classes. And if