有没有一种方法可以在不使用 PowerShell 或 CIM Studio 的情况下查询 WMI?
我想查询 WMI 以获取 WCF 服务信息,但我不想使用 PowerShell 或 CIM Studio。还有其他工具可以执行此操作(命令行也很酷)?
I'd like to query WMI for WCF service information, but I'd rather not use PowerShell or the CIM Studio. Any other tools for doing this (command-line is cool too)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在命令提示符或“开始”菜单中键入
wbemtest
以启动此 GUI 工具。编辑:抱歉 - 没有注意到你特别提到了命令行。也许仍然有用。
Type
wbemtest
in to a command prompt or the Start Menu to launch this GUI tool.Edit: Sorry - didn't notice you said command-line specifically. Maybe useful none the less.
您可以尝试wmic。它对于交互式使用来说效果很好,但我更喜欢使用 vbscript 来编写脚本。
You could try wmic. It works well enough for interactive use, but I prefer to use vbscript for, well, scripts.
您可以使用 VBScript,但我不会推荐它,除非您已经非常熟悉它。
可以通过 PowerShell 和 VBScript 使用 WMI 的一些示例 此处。
You could use VBScript, but I would not recommend it unless you are already quite familiar with it.
Some examples of using WMI via both PowerShell and VBScript can be found here.