Symptoms & Diagnosis
Windows 11 updates often fail due to corrupted files within the local update cache. When this happens, the operating system attempts to install broken data, leading to a repetitive loop of failure and “undoing changes.”
Common symptoms include update progress bars getting stuck at 0%, 66%, or 99% for several hours. You might also encounter specific error codes such as 0x80070002, 0x8024000b, or 0x80070003 during the installation phase.
To diagnose the issue, check the Windows Update history. If you see multiple “Failed to install” entries for the same KB (Knowledge Base) number, the local cache folder is likely the culprit.

Troubleshooting Guide
The most effective way to resolve Windows 11 update failures is to reset the SoftwareDistribution and Catroot2 folders. These folders act as temporary storage for update files.
Before deleting files, you must stop the background services that manage updates. Use the table below to identify the critical services involved.
| Service Name | Function |
|---|---|
| wuauserv | Windows Update Service |
| bits | Background Intelligent Transfer Service |
| cryptsvc | Cryptographic Services (manages file signatures) |
Step 1: Stop Windows Update Services
Open Terminal or Command Prompt as Administrator. Type the following commands one by one, pressing Enter after each:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
Step 2: Clear the Cache Folders
Once the services are stopped, you can safely rename the cache folders. This forces Windows to create fresh, clean versions of these directories.
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
Step 3: Restart the Services
Now, restart the services to allow Windows 11 to initiate a fresh download of the required updates.
net start wuauserv
net start bits
net start cryptsvc
net start msiserver
After running these commands, go to Settings > Windows Update and click “Check for updates.” The system will rebuild the cache and download clean files.
Prevention
To prevent future update cache corruption, ensure your system has at least 20GB of free space before starting large feature updates. Low disk space is a primary cause of partial downloads.
Maintain a stable internet connection. Interrupted downloads often lead to file integrity issues within the SoftwareDistribution folder. If using Wi-Fi, stay close to the router during the update process.
Regularly run the built-in Windows Update Troubleshooter. Navigate to Settings > System > Troubleshoot > Other troubleshooters and run the “Windows Update” tool to fix minor configuration errors before they escalate.