How to export the list of installed updates?

    2 answers 2

    For Windows 2000 / XP, it seems like there is a utility for checking installed updates from microsoft - qfecheck . Well, respectively, export team

    qfecheck.exe >> c:\update_status.txt 

    For Windows Vista / 7, or under Windows XP with Powershell installed, you can use

     wmic qfe get >>c:\update_status.txt 
    • The command works, but it seems that only updates for Windows 7 are shown. And the rest of the updates from the “Update log list” list are not displayed. For example, I have an Update for Microsoft Office 2010 (KB2553270) there, and there is no such update in update_status.txt. How to get other updates? - komka

    Try this (the command will issue a text log with a list of installed updates)

     wmic qfe get 

    If you wish, you can specify a different format (as an html file, for example).

    • Thank. On the team there is another question, see below. - komka