带有 Qt 的 WMI 示例和信息
在哪里可以找到有关在 Qt 中使用 WMI 的更多信息和示例?我之前没有 WMI 经验。
Where can I find more information on and examples of using WMI with Qt? I have no prior experience with WMI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Microsoft 概述了如何从 C++ 使用 WMI< /a>.我会以此开始,然后在 QT 之上实现一个用户界面。 WMI 公开了 COM 接口,因此您应该得到如果您以前没有使用过它,请熟悉它。 Don Box 的 Essential COM 是关于该主题的更好的书籍之一。
代码项目网站还有一些相关的信息。对于 Windows 上的 C++ 编程来说,它通常是一个不错的网站。
您是否正在尝试创建跨平台应用程序,或者您只是针对 Windows?
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?