After I've had installed Windows update, is there anyway I can search through these updates?

Example, I would like to filter "security" updates in this list:

list of Windows updates

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Maybe you can search from registry via reg and findstr command line tool.

reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" /s | findstr /i "DisplayName.*Security.*Update"

Example

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)
link|improve this answer
feedback

I don't think you will get what you want where you were looking.

I think the best you will do is to go to Control Panel>Programs>Programs and Features>View Installed Updates and sort on the date. It has quite a bit more information.

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.