如何使用 VBScript 列出具有方法的所有 WMI 类?
使用 VBScript,如何列出所有具有方法的 WMI 类?
Using VBScript, how can I list all WMI classes that have methods?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
使用 VBScript,如何列出所有具有方法的 WMI 类?
Using VBScript, how can I list all WMI classes that have methods?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
运行 SELECT 架构查询 以获取命名空间中所有类的列表,然后检查每个类的
Methods_.Count
:您可能希望将结果限制为动态并且仅静态类,就像 WMI Code Creator 所做的那样。为此,请为相应的类限定符添加额外的检查。
我还建议您阅读WMI 脚本入门:第 2 部分一文。它通过示例详细解释了 WMI 概念和基础结构,并且可能已经包含了您未来问题的答案。 :)
Run a SELECT schema query to get a list of all classes in a namespace, and then check each class's
Methods_.Count
:You may want to limit the results to dynamic and static classes only, like WMI Code Creator does. To do this, add an additional check for the corresponding class qualifiers.
I also suggest that you read the WMI Scripting Primer: Part 2 article. It explains the WMI concepts and infrastructure in detail and with examples, and may already hold answers to your future questions. :)