tags:

views:

184

answers:

2

Where can I find more information on and examples of using WMI with Qt? I have no prior experience with WMI.

+1  A: 

Microsoft have an overview of how to work with WMI from C++. I would start with that and then implement a user interface on top with QT. WMI exposes a COM interface so you should get familiar with that if you have not used it before. Don Box's Essential COM is one of the better books on the subject.

The Code Project site also has some related information. It is generally a good site for C++ programming on Windows.

Are you trying to create a cross-platform app, or do you just target Windows?

BrianLy
yes I target windows
barbgal
+1  A: 

Use this class WBEM Class Wrapper for Local and Remote Process Creation
General help for WMI WMI Diagnosis Tool General Questions
Codding WMI C++ Application Examples
Tools WMI tools
Hope that helps.

lsalamon