我如何检查我的系统中是否安装了特定的修补程序(Windows 更新)?
我的应用程序使用的 Riched20.dll 文件存在一些问题,该问题已通过 KB884047 修补程序修复,为了避免旧Windows版本出现问题,我想检测系统中何时应用了此修补程序,那么我如何使用delphi检查我的系统中是否安装了特定的修补程序(Windows更新)?
I have some issues with the Riched20.dll file which is used by my application, this problem is fixed applying the KB884047 hotfix, in order to avoid problems with old windows versions, I want to detect when this hotfix is applied in the system, so How i can check if a particular hotfix (windows update) is installed in my system using delphi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
前段时间,我在博客上讨论了这个主题
使用 Delphi、WMI 和 WUA 搜索已安装的 Windows 更新
关键是使用 Windows 更新代理 API
检查此示例代码。
Some time ago, I blogged about this topic
search for installed windows updates using Delphi, WMI and WUA
The key is use the Windows Update Agent API
check this sample code.