RackNerd Billboard Banner

Get lists of installed Microsoft Windows Updates

Keeping your Windows PC updated is crucial for security and performance. But sometimes, you need to check which updates are already installed—maybe to troubleshoot a problem, verify a fix, or just stay informed.

Here’s how you can quickly get a list of all installed Microsoft Windows updates.


1. Using Windows Settings

The easiest way is through the Windows Settings app:

  1. Open Settings: Press Windows + I on your keyboard.
  2. Go to Update & Security.
  3. Click on Windows Update in the sidebar.
  4. Click View update history.

Here, you’ll see a chronological list of all updates installed, including quality updates, driver updates, and more.


2. Using Control Panel

For those on older versions of Windows (like Windows 7/8), you can also use the Control Panel:

  1. Open the Control Panel (search for it in the Start menu).
  2. Click Programs and Features.
  3. On the left, click View installed updates.

You’ll see a searchable, sortable list of updates.


3. Using Command Prompt or PowerShell

For more advanced users or those who want to export the list, use these commands:

Command Prompt:

  1. Open Command Prompt as Administrator.
  2. Run:
    wmic qfe list brief /format:table
    This shows a table with update IDs, descriptions, install dates, and more.

PowerShell:

  1. Open PowerShell as Administrator.
  2. Run:
    Get-HotFix
    This command lists all installed updates. Want to export it? Run:
    Get-HotFix | Export-Csv -Path "$env:USERPROFILE\Desktop\InstalledUpdates.csv" -NoTypeInformation
    Now you’ll have a CSV file on your desktop.

4. Using Third-Party Tools

Some IT pros prefer third-party tools that provide more details or easier export options. Examples include:

  • Belarc Advisor
  • WSUS Offline Update
  • Patch My PC

Always download from official sources.


Why Check Installed Updates?

  • Troubleshooting: Roll back updates that cause issues.
  • Compliance: Make sure all required patches are in place.
  • Documentation: Keep a record for audits or tech support.

Quick Recap

  • Settings or Control Panel: Fast, user-friendly.
  • Command Line: Powerful, exportable.
  • Third-Party Tools: Extra details.

Staying informed about your Windows updates helps keep your PC secure, stable, and running smoothly.


Need more tech tips? Subscribe to our updates or drop your questions in the comments!

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
RackNerd Billboard Banner
© 2025 Computer Everywhere
Your Everyday Guide to the Digital World.
Terms of Service | Privacy Policy
Copy link