Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Google let me down, I couldn't find it on MSDN. man wmi doesn't work at the windows shell... I'm looking for a list of objects that I can query, and how to construct the queries.

With WMI I mean the query language to query stuff like "Win32_Process"

I know about the classes and example queries, but I'm looking for a complete list of all possible query objects.

I already found what I'm looking for using the debugger, but it's still interesting to look at a complete overview to see what's possible with WMI.

share|improve this question
Well, WMI can be a lot of things, could you please specify a bit? – Johann Gerell Jan 27 '09 at 14:10

5 Answers

up vote 7 down vote accepted

MSDN WIN32 Classes you can find a list of classes to use in your query here along with example queries

share|improve this answer
Thanks man, that what where I'm looking for! – Paco Jan 27 '09 at 17:36

Do you know this tool WMI Code Creator, good for learn WMI.
Another similar tool Scriptomatic 2.0.

share|improve this answer
2  
Just wanted to say BIG THANKS for this link! Helped me a lot! – Amokrane Chentir Jun 8 '10 at 8:31
I'm glad to have helped. – lsalamon Jul 6 '11 at 0:40
This tool saves my time – Liton Feb 10 '12 at 8:25

There isn't a documented "complete" list of WMI classes that you can query, because programs can register their own WMI providers, and this can change between versions.

Use WBEMTEST and press the "Enum Classes" button...

share|improve this answer

Microsoft TechNet Script Center has WMI Scripting Primer and many other hepful WMI resources.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.