Find Installation Date of Windows Updates

61,240

Solution 1

Try looking in c:\windows\WindowsUpdate.log

Solution 2

In powershell you can do that : Get-WmiObject -Class "win32_quickfixengineering" easy and fast .

Solution 3

From the command prompt, you can use the following wmic command to get a full list of the installed updates in html format:

wmic qfe list full /format:htable > hotfixes.html

If you prefer the csv format, use the /format:csv modifier instead:

wmic qfe list full /format:csv > hotfixes.csv

Solution 4

You can also look here - %windir%\SoftwareDistribution\ReportingEvents.log.

Solution 5

I think Get-Hotfix has been available via PowerShell since version 3.

You can run it locally or against remote systems.

Locally:

# Get all hotfixes locallly

    Get-Hotfix

# Look for a specific hotfix

    Get-Hotfix -Id KB2693643

To get hotfixes for remote system(s), provide it -Computername with your list of systems. (Note: This requires RPC open on the firewall between systems you're querying and wherever you're running Get-Hotfix from)

Get-Hotfix -Computername YourComputer

or

Get-Hotfix -Computername Computer1, Computer2, Computer3

Get-Hotfix -Computername (Get-Content \path\to\your_list.txt)
Share:
61,240

Related videos on Youtube

Element
Author by

Element

Updated on September 17, 2022

Comments

  • Element
    Element almost 2 years

    Is it possible to find the date when windows updates were installed on windows server 2003?

    If I go to the controlpanel->install/uninstall programs and check the "Show Updates" checkbox it will show the windows updates that have been installed, but I don't see the installation date anywhere.

    • aeroshock
      aeroshock over 13 years
      I just checked on a handful of our 2003 servers, and they all list the installation date for all installed updates. What mechanism are you using to install these updates? WSUS? WU? SCCM? Downloading the installers individually?
    • Element
      Element over 13 years
      I was just using vanilla windows update with manual confirmation required to download/install.
  • alanjmcf
    alanjmcf about 8 years
    Key doesn't exist in Windows 10 apparently.
  • Sajuuk
    Sajuuk about 5 years
    apparently this applies not to all distribution, moreover this record is pretty unreliable as well.