I'm looking for a way to check whether WMI is running properly on a Windows Server 2008 machine. I'd prefer to do this by running a command. Is there any?
Asked
Active
Viewed 2.4k times
2 Answers
8
WMIDiag is a good place to start.
WMI Diagnosis Utility
http://technet.microsoft.com/en-us/library/ff404265.aspx
WMIDiag download
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=7684

Greg Askew
- 35,880
- 5
- 54
- 82
5
or just do somethig like this at an elevated prompt
wmic os

tony roth
- 3,884
- 18
- 14
-
Thanks, that's what I was looking for. When WMI is down, it gives an error message and I can catch that pattern. – Hakan Oct 04 '11 at 15:22