Skip to content
Follow
Windows

How to Fix Windows Update Failures in Windows 11

Richard
Written by
Richard
Aug 8, 2021 Updated Sep 15, 2026 4 min read
How to Fix Windows Update Failures in Windows 11
How to Fix Windows Update Failures in Windows 11

Windows update failures happen when your Windows 11 PC gets stuck downloading or installing system patches, leaving security holes open. These broken updates usually show up as cryptic error codes or infinite loading loops inside the Settings app.

Advertisement

You can fix most update blocks by running the built-in Windows Update troubleshooter or clearing out stuck temporary files from your system folders. These straightforward steps get your PC downloading the latest software versions safely again without losing your personal files.

⚡ Quick Answer

Fix Windows 11 update failures by running the Windows Update Troubleshooter, clearing storage space, checking hard drive errors with chkdsk/f C:, renaming the SoftwareDistribution folder, and repairing system files with DISM.exe /Online /Cleanup-image /Restorehealth and sfc /scannow.

Advertisement

1Use the Windows Update Troubleshooter

Windows has a built-in tool to find and fix update issues automatically. Open Settings .

  1. Open Settings.
  2. Go to System > Troubleshoot > Other troubleshooters.
  3. Find Windows Update and click Run.

2Clear Up Storage Space

Windows 11 update failures often happen because there isn’t enough storage space on your computer for the update to download and install.

3Fix Hard Drive Errors

Hard drive errors can block Windows 11 update failures by stopping new files from writing correctly to your storage. You can find and repair these damaged sectors by running a built-in check command in Command Prompt, which scans your entire drive and fixes faults automatically to let your updates finish installing .

📝NoteThis step requires an administrator account.
Advertisement
  1. Click Start and type cmd.
  2. Right-click Command Prompt and choose Run as administrator.
Windows 11 Command Prompt running as administrator to fix update errors
windows 11 command prompt administrator

Type the following command and press Enter:

chkdsk/f C:

Your computer will check for errors and may ask you to restart to finish the repair.

4Rename the SoftwareDistribution Folder

Corrupted files inside the SoftwareDistribution folder (a folder that stores temporary update files) often cause stubborn Windows 11 update failures. You can clear out these broken downloads by renaming the folder using Command Prompt, which forces Windows to create a fresh, clean folder and successfully download your pending updates again.

📝NoteThis step requires an administrator account.
Advertisement
  1. Open Command Prompt as an administrator.
Executing chkdsk command in Windows 11 Command Prompt for system repairs
windows 11 command prompt administrator

Type these commands one by one, pressing Enter after each line:

net stop bits
net stop wuauserv
ren C:\Windows\SoftwareDistribution SoftwareDistribution.bak
ren C:\Windows\System32\catroot2 catroot2.bak
net start bits
net start wuauserv

Restart your computer and try the update again.

5Repair System Files

Damaged system files are a leading cause of Windows 11 update failures because missing core components stop the installation process. You can fix these broken files by running built-in command-line tools that scan your operating system and automatically replace any damaged parts with healthy copies from a secure online source.

Advertisement

Note: This step requires an administrator account.

  1. Open Command Prompt as an administrator.
  2. Type this command and press Enter:
DISM.exe /Online /Cleanup-image /Restorehealth

Wait for it to finish. Once done, type this command and press Enter:

sfc /scannow

Common Windows Update Error Codes

Windows 11 update error codes tell you the exact reason your update failed so you can skip guesswork and apply the right fix. Common codes like 0x8007000d point to corrupted installation data, while codes like 0x800f0922 usually mean your computer cannot reach the Microsoft update servers properly.

  • 0x8007000d: Usually means data is missing or corrupted.
  • 0x800f0922: Often caused by a lack of connection to update servers or low system partition space.
  • 0x80070005: Access denied error, often caused by antivirus software.
  • 0x80244017: Connection issues with the update service.
  • 0x800f081f: Source files could not be found during the update process.

Frequently Asked Questions

Why does 🪟 Windows 11 update get stuck at 0%?

Updates often get stuck at 0% due to a corrupted update cache (temporary storage for update files) or a slow internet connection. The system struggles to download the initial files. Resetting the SoftwareDistribution folder and restarting the update service usually clears this block and allows the download to proceed normally.

Advertisement

Does antivirus software prevent 🪟 Windows 11 updates?

Yes, third-party antivirus software can sometimes block Windows Update processes. These programs may mistake update files for threats. If you experience repeated failures, try temporarily disabling your antivirus software to see if the update completes successfully. Remember to turn it back on immediately after.

What should I do if 🪟 Windows 11 update fails repeatedly?

Persistent update failures call for a clean boot to stop background programs from interfering, alongside DISM and SFC commands to repair system files.

Summary

If Windows updates are failing, start by using the Windows Update Troubleshooter. If that does not work, clear space on your hard drive, repair system files with DISM and SFC, and reset your update components. These steps will help keep your PC secure and up to date.

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.

Advertisement

📚 Related Tutorials

How to Schedule Windows Update Restarts in Windows 11
Windows How to Schedule Windows Update Restarts in Windows 11
How to Read Windows Update Logs in Windows 11
Windows How to Read Windows Update Logs in Windows 11
How to Delete Files in Windows 11
Windows How to Delete Files in Windows 11
How to Pause and Resume Updates for Windows 11
Windows How to Pause and Resume Updates for Windows 11

2 Comments

Leave a Comment

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