学习 .NET 中的 WMI 的好资源吗?
我正在寻找有关学习 WMI 的良好资源的建议。 对所有类型都感兴趣; 书籍、在线、网络广播等
I'm looking for recommendations for good resources are there out there to learn WMI. Interested in all types; books, online, webcasts, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
嗯,当然有 MSDN 库文档 用于 Windows 管理规范 (WMI)。
根据上述链接中发布的社区内容,显然可以使用 Get-WMIObject cmdlet 从 PowerShell 访问 WMI。
请注意,WMI 过去是通过 vbscript、COM 和其他“较旧”技术访问的。 如果您在 .NET 中进行开发,那么您可能会更好地使用这些命名空间:
有关这些命名空间的更多信息,请访问 http://msdn.microsoft.com/en-us/library/ms257340(VS.80).aspx。
Amazon 上有一些关于 WMI 的书籍; 最好的似乎是 Addison Wesley 出版的“开发 WMI 解决方案:Windows Management Instrumentation 指南”。
Well, there is of course the MSDN library documentation for Windows Management Instrumentation (WMI).
WMI is apparently accessible from PowerShell, using the Get-WMIObject cmdlet, according to community content posted at the above link.
Note that WMI is historically accessed through vbscript, COM, and other "older" technologies. If you are developing in .NET, you might have better luck with these namespaces:
There is more info about these namespaces at http://msdn.microsoft.com/en-us/library/ms257340(VS.80).aspx.
There are a handful of books on Amazon about WMI; the best one appears to be "Developing WMI Solutions: A Guide to Windows Management Instrumentation" published by Addison Wesley.
另一个漂亮的工具是 WMI Code Creator。 AAARRRRGH 我还不能发布链接。 去Google,搜索
“wmi code Creator”站点:www.microsoft.com
这是第一个链接。 您可以探索命名空间和类,该工具会创建代码以供您在 VB、VBScript 或 C# 中执行方法或进行查询。
Other nifty tool is WMI Code Creator. AAARRRGH I can't post links yet. Go to Google, search for
"wmi code creator" site:www.microsoft.com
It's the first link. You can explore the namespaces and classes and the tool creates the code for you to execute the methods or make the queries, in VB, VBScript, or C#.
查看 PowerShell 人员的“WMI Explorer”。 用于交互式探索 WMI 命名空间的好工具。
Look into the "WMI Explorer" from the PowerShell guy. Nice tool for interactive exploration of WMI namespaces.
链接:
示例书籍章节:
Links:
Sample book chapters: