Windows 10/Windows Update History

From Omnia
Jump to navigation Jump to search

Quick Fix Engineering

QFE - Quick Fix Engineering

wmic qfe list

or

Settings -> search "Update History"

Ref: https://pureinfotech.com/check-update-history-windows-10/

Sample:

C:\Users\user>wmic qfe list
Caption                                     CSName       Description      FixComments  HotFixID   InstallDate  InstalledBy          InstalledOn  Name  ServicePackInEffect  Status
http://support.microsoft.com/?kbid=4580980  LMT-CI-5041  Update                        KB4580980               NT AUTHORITY\SYSTEM  11/10/2020
http://support.microsoft.com/?kbid=4513661  LMT-CI-5041  Update                        KB4513661                                    2/9/2020
http://support.microsoft.com/?kbid=4517245  LMT-CI-5041  Update                        KB4517245                                    2/9/2020
http://support.microsoft.com/?kbid=4537759  LMT-CI-5041  Security Update               KB4537759                                    2/9/2020
http://support.microsoft.com/?kbid=4538674  LMT-CI-5041  Security Update               KB4538674                                    2/9/2020
http://support.microsoft.com/?kbid=4552152  LMT-CI-5041  Security Update               KB4552152               NT AUTHORITY\SYSTEM  5/29/2020

Other qfe commands

Run the following command to get all information about each hotfix installed on your computer.

wmic qfe list full

You can also format the output as a table so that it is easy to read and comprehend.

wmic qfe list full /format:table

If full information is not required, you can use the following command to get the summary:

wmic qfe list brief

And if you want to find a specific hotfix, run the following command:

wmic qfe list brief | find “KB4495667”

To save the complete output in a file, run the following command:

wmic qfe list full /format:table > C:\Users\Usman\Desktop\WindowsUpdatesReport.html

ref: https://www.itechtics.com/view-list-windows-updates/