Skip to content
Follow
Windows

How to Read Windows Update Logs in Windows 11

Richard
Written by
Richard
Apr 27, 2026 Updated Jun 19, 2026 3 min read
Isometric monitor with structured event log interface
Isometric monitor with structured event log interface

Do you ever wonder why your computer is acting up after an update? Sometimes you need to check the Windows Update logs to see exactly what happened behind the scenes. This guide will show you how to read those logs in Windows 11.

⚡ Quick Answer

To read Windows Update logs, open PowerShell as an administrator and run Get-WindowsUpdateLog. This command converts the raw diagnostic files into a readable WindowsUpdate.log text file saved to your desktop. Alternatively, use Event Viewer by typing eventvwr.msc and navigating to WindowsUpdateClient > Operational.

Why read Windows Update logs?

Windows updates can sometimes fail due to network issues, corrupted files, or conflicts with other software. By reading these logs, you can identify specific error codes that explain why an update stopped. This saves you from guessing and helps you fix the root cause quickly.

What happens when done?

After following these steps, you’ll have a clear, readable text file on your desktop or a detailed list in the Event Viewer. This lets you see exactly when an update started, if it encountered a specific error, and if it finished successfully.

Understanding Log Structure and Syntax

Windows update logs are special files found in 📁C:\Windows\Logs\WindowsUpdate that record what’s happening with updates. Because they’re in a format called ETL, you can’t just open them with Notepad; you need a tool to read them.

A typical log entry looks like this:

💻Code
2023-10-27 10:00:00.1234567 1234 5678 Agent  * START * Finding updates

Breakdown:

  • Timestamp: The exact date and time the event occurred.
  • PID (Process ID): The unique number assigned to the Windows Update service.
  • TID (Thread ID): The specific task thread running the update.
  • Component: The part of the system (like the Agent) performing the action.
  • Message: The actual status or error description.

References:

Option 1Read logs using PowerShell

You can read Windows update logs using PowerShell by running a simple command that turns the raw log files into a text file you can easily read on your desktop. This method helps you see the update history in a clear text format.

  1. Open the Start menu, type PowerShell, right-click it, and select Run as administrator. (Requires Admin privileges)
  2. Copy and paste the following command and press Enter:
PowerShell
Get-WindowsUpdateLog -Destination C:\Users\Public\Desktop\WindowsUpdate.log

Windows Update log files

PowerShell terminal window running the Get-WindowsUpdateLog command in Windows 11
PowerShell terminal window running the Get-WindowsUpdateLog command in Windows 11

Pro-tip: If you are troubleshooting a current issue, use the -ForceFlush parameter to ensure all pending data is written to the log file before conversion.

Option 2Read logs using Event Viewer

The Event Viewer gives you a visual way to check Windows update logs, showing recent events in a clear list without needing to convert any files. It’s a handy tool for quickly seeing what happened with your updates.

  1. Press the Windows key, type eventvwr.msc, and press Enter.
  2. In the left pane, expand Applications and Service Logs > Microsoft > Windows > WindowsUpdateClient.
  3. Click on Operational to see a list of recent events.
Windows Event Viewer interface displaying system logs for Windows update troubleshooting
Windows Event Viewer interface displaying system logs for Windows update troubleshooting

Comparing Event Viewer and WindowsUpdate.log: Event Viewer offers a look at real-time, high-level events. The WindowsUpdate.log file, on the other hand, gives you a deep, granular history of the update process, making it ideal for complex troubleshooting.

Troubleshooting Common Errors

If your Windows Update logs are empty or unreadable, you can troubleshoot by checking if the Windows Update service is running and ensuring you have administrative rights to the log path.

Advanced Tools: SetupDiag

For persistent failures, Microsoft provides a tool called SetupDiag. It automatically scans your logs and identifies why an update failed. It is much faster than reading thousands of lines of text manually.

How to see update logs?

To see Windows Update logs in Windows 11, you can open PowerShell as an administrator and use the ‘Get-WindowsUpdateLog’ command to convert the diagnostic files into a readable text file saved on your desktop.

Can I see Windows Update history?

Yes, you can easily view your Windows Update history in Windows 11 by going to the Settings menu, selecting Windows Update, and then clicking on ‘Update history’ for a summary of installed and failed updates.

Where is the Windows Update log stored?

The raw diagnostic files used for Windows Update logs are stored in the ‘📂%windir%\Logs\WindowsUpdate’ folder on your system drive. Because these files are encoded in an ETW format, you must use the ‘Get-WindowsUpdateLog’ PowerShell command to convert them into a readable text file on your desktop.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Fix Windows Update Failures in Windows 11
Windows How to Fix Windows Update Failures in Windows 11
How to View Windows Update Policies in Windows 11
Windows How to View Windows Update Policies in Windows 11
How to Check for and Install Optional Updates in Windows 11
Windows How to Check for and Install Optional Updates in Windows 11
How to Check when Windows Update was Last Checked in Windows 11
Windows How to Check when Windows Update was Last Checked in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *