答案1
也许您可以通过注册表进行搜索reg
和findstr
命令行工具。
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" /s | findstr /i "DisplayName.*Security.*Update"
例子
C:\>reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" /s | findstr /i "DisplayName.*Security.*Update"
DisplayName REG_SZ Security Update for CAPICOM (KB931906)
DisplayName REG_SZ Security Update for Microsoft .NET Framework 4 Extended (KB2416472)
C:\>reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" /s | findstr "安全更新"
DisplayName REG_SZ Windows Internet Explorer 8 安全更新 (KB2183461)
DisplayName REG_SZ Windows XP 安全更新 (KB2412687)
答案2
我认为你不会在你所寻找的地方得到你想要的东西。
我认为最好的办法是去那里Control Panel>Programs>Programs and Features>View Installed Updates
并按日期排序。那里有相当多的信息。