WMI 查询以获取服务包列表
是否可以使用 WMI 查找 Windows 2000 计算机上安装的服务包?
Is it possible to find out the service packs that are installed on a Windows 2000 machine using WMI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一种使用 WMI 获取已安装软件的建议方法 - 尽管并非所有软件都会显示,因此您必须...
1) 尝试一下,看看它们是否完全出现
2) 调整示例以过滤结果,以便仅服务包显示
There's a suggested way of getting installed software using WMI - although not all software shows up, so you'd have to...
1) Try it out and see if they appear at all
2) Adjust the example to filter the results so only service packs show
是的,wmi 类 Win32_OperatingSystem 包含所有这些信息。 我可以通过使用 powershell 检查本地计算机来验证此信息:
注意:Powershell 仅在 XP 或更高版本上运行,但您可以通过将 -Computer 参数传递给 get-wmiobject 来检查远程系统。
Yes, the wmi class Win32_OperatingSystem contains all of this information. I can see verify this information by using powershell to check my local machine:
Note: Powershell only runs on XP or higher, but you can check remote systems by passing a -Computer parameter to get-wmiobject.
嘿,脚本专家! 系列中的 VBScript 示例:
A VBScript example from Hey, Scripting Guy! series: