Fix Windows Update Issues Easily: 12 Methods That Actually Work in 2026
To fix Windows update issues easily, run the built-in Windows Update Troubleshooter from Settings, then clear the SoftwareDistribution cache and run SFC and DISM scans.
These three steps resolve most update failures on Windows 10 and Windows 11. If errors persist, install the update manually from the Microsoft Update Catalog using the KB number.
This guide gives you 12 tested methods, an error code lookup table, Windows 11 24H2 specific fixes, and prevention tips. Start with Method 1 and move down only if needed. Each method takes 5 to 15 minutes on most PCs.

Also check out the Guide section for more helpful guides, including: Configuring default Printer settings | Configuring default playback Device | Troubleshooting Microphone Privacy Settings
Quick Symptom-to-Fix Decision Table
Use this table to jump straight to the right method for your symptom. Most users only need one or two methods to fix Windows update issues easily.
| Symptom | Try This Method First |
|---|---|
| Update stuck at a percentage | Method 2 (Restart services) |
| “We could not connect to the update service” error | Method 3 (Clear cache) |
| Specific error code shown (0x80070002, 0xC1900101, etc.) | Method 12 (Error code table) |
| Update keeps failing after every reboot | Method 6 (Reset components) |
| Windows 11 24H2 broke something | Method 11 (24H2 known issues) |
| Get Help app cannot fix it | Method 4 (SFC and DISM) |
| Same bad update reinstalls repeatedly | Method 9 (Wushowhide) |
| You manage updates with Group Policy at work | Skip to the prevention checklist |
Also on Axeetech: Microsoft Edge Canary Build
Why Windows Updates Fail (Common Causes)
Windows updates fail for a small number of recurring reasons. A weak Wi-Fi or Ethernet connection drops the download mid-way. Low disk space stops feature updates from extracting installation files.
A corrupted SoftwareDistribution cache blocks new updates from registering. Sometimes the Windows Update service (wuauserv) or BITS stops running in the background. Third-party antivirus software like Norton, McAfee, or Kaspersky can also block update files.
Outdated graphics or network drivers trigger error 0xC1900101 during feature updates. BIOS or UEFI firmware mismatches cause similar driver conflicts. On work laptops, Group Policy or Microsoft Intune may restrict updates entirely.
Also on Axeetech: Set your preferred default printer in Windows
Before You Start (Prevention Checklist)
Run through this 8-point checklist before applying any fix. It prevents most update problems from getting worse.
- Plug your laptop into power so the battery does not die mid-update.
- Connect to stable Wi-Fi or Ethernet, not a mobile hotspot.
- Free up at least 20 GB of disk space for feature updates.
- Set the correct date and time in Settings, Time and Language.
- Locate your BitLocker recovery key on account.microsoft.com/devices.
- Disconnect non-essential USB devices, docks, and external drives.
- Pause third-party antivirus temporarily before starting the fix.
- Back up critical files to OneDrive or an external SSD.
Warning: Locate your BitLocker recovery key at account.microsoft.com/devices before any major update. Feature updates sometimes trigger BitLocker recovery, and you can be locked out of your PC without that 48-digit key.
Method 1: Run the Windows Update Troubleshooter
The built-in Windows Update Troubleshooter is the fastest first step. It checks services, downloads, and configuration in under 2 minutes.

On Windows 11, open Settings, then System, then Troubleshoot, then Other troubleshooters. Find Windows Update in the list and click Run. The troubleshooter will scan and apply fixes automatically.
On Windows 10, open Settings, then Update and Security, then Troubleshoot, then Additional troubleshooters. Select Windows Update and click Run the troubleshooter. Restart your PC after the scan finishes.
Tip: On Windows 11, the Get Help app is the modern replacement for the older troubleshooter. Type “Get Help” in the Start menu and search for “Windows Update” inside the app for guided automated diagnostics.
For deeper guidance, the official Windows Update Troubleshooter documentation lists the exact services it checks.
Method 2: Restart Windows Update Services
Background services manage every Windows Update download and install. When one freezes, the whole update stalls.
Press Windows + R, type services.msc, and press Enter. Locate the four services in the table below. Right-click each one and select Restart in order.
| Service Name | Service ID | Function |
|---|---|---|
| Windows Update | wuauserv | Manages update detection, download, install |
| Background Intelligent Transfer Service | BITS | Handles update file transfers |
| Cryptographic Services | cryptSvc | Verifies update signatures |
| Windows Installer | msiserver | Installs MSI-based updates |

After restarting all four services, retry Windows Update from Settings. This fix alone resolves stuck updates in many cases.
Method 3: Clear the Windows Update Cache (SoftwareDistribution Folder)
The SoftwareDistribution folder stores downloaded update files. When these files corrupt, Windows refuses to download new ones.
Open Command Prompt as administrator. Run the following commands one at a time:

net stop wuauserv
net stop bits
Open File Explorer and navigate to C:\Windows\SoftwareDistribution. Select all files and folders inside, then delete them. Windows will recreate the necessary files automatically.
Return to Command Prompt and restart the services:
net start wuauserv
net start bits
Restart your PC and check for updates. The download will start fresh from Microsoft servers.
Method 4: Repair System Files Using SFC and DISM
System File Checker and Deployment Image Servicing and Management are two built-in repair tools. They fix corrupted system files that block Windows Update.
Open Command Prompt as administrator. Run DISM first, since SFC depends on a healthy Windows image.
DISM.exe /Online /Cleanup-image /Restorehealth
sfc /scannow

DISM repairs the underlying Windows image using Microsoft servers. SFC then scans every protected system file and replaces corrupted ones. The full process takes 15 to 30 minutes on most PCs.
Restart your computer when both scans are complete. Then retry Windows Update.
Method 5: Manually Install the Update from Microsoft Update Catalog
When automatic updates keep failing, manual installation bypasses the Windows Update service entirely. This works for cumulative, security, and feature updates.
First, find the KB number of the failing update. Open Settings, Windows Update, Update history. The KB number looks like KB5034441 or KB5036893.

Visit the Microsoft Update Catalog and search for the KB number. Choose the correct architecture for your PC (x64 for most laptops, ARM64 for Snapdragon X Elite Copilot+ PCs, x86 for older 32-bit systems).
Download the .msu file and double-click to install. Restart when prompted. The update applies directly without going through the Windows Update service.
Method 6: Reset Windows Update Components Completely
When nothing else works, a full component reset is the nuclear option. It stops all related services, renames the cache folders, and starts fresh.
Open Command Prompt as administrator and paste these commands one block at a time:
net stop bits
net stop wuauserv
net stop cryptSvc
net stop msiserver
ren %systemroot%\SoftwareDistribution SoftwareDistribution.bak
ren %systemroot%\System32\catroot2 catroot2.bak
net start bits
net start wuauserv
net start cryptSvc
net start msiserver
The .bak rename keeps your old folders as backup. If anything breaks, you can rename them back. Restart your PC and retry Windows Update from Settings.
Tip: This reset works for almost every persistent update failure on Windows 10 and Windows 11. Save these commands in a Notepad file for future use.
Method 7: Use PSWindowsUpdate PowerShell Module (Power User Fix)
PSWindowsUpdate is a free PowerShell module that gives you direct control over Windows Update. It works even when the Settings app refuses to load updates.
Open PowerShell as administrator. Install the module:
Install-Module PSWindowsUpdate -Force

List all pending updates with this command:
Get-WindowsUpdate
Install everything pending in one go:
Install-WindowsUpdate -AcceptAll -AutoReboot
The module is hosted on the official PowerShell Gallery. It supports filters by KB number, category, and severity.
Tip: PSWindowsUpdate is the fastest way to install pending updates without touching the Settings app. It works even when the Windows Update GUI is broken or stuck on a loading screen.
Method 8: Generate and Read Windows Update Logs
When updates fail with cryptic errors, the WindowsUpdate.log file shows exactly what happened. Power users and IT admins use it to spot the failure point.
Open PowerShell as administrator and run:
Get-WindowsUpdateLog
The cmdlet creates WindowsUpdate.log on your Desktop. Open it in Notepad or VS Code and search for “FATAL” or “error” entries. The lines around each error usually point to the exact cause.
For real-time monitoring, open Event Viewer. Navigate to Applications and Services Logs, Microsoft, Windows, WindowsUpdateClient, Operational. Each failed update logs a detailed entry there.
Method 9: Hide Problematic Updates with Wushowhide
Some updates fail repeatedly even after every fix. Microsoft’s Wushowhide.diagcab tool hides specific updates so Windows stops trying to install them.
Search Microsoft.com for “wushowhide.diagcab” and download the tool. The file is small and runs without installation.
Run wushowhide.diagcab as administrator. Click Next, then Hide updates. Select the failing update from the list and click Next. Windows will stop offering that update on future scans.
Warning: Hiding security updates leaves your PC vulnerable. Use Wushowhide only on optional drivers or feature updates that fail repeatedly, not on critical security patches.
To unhide later, run the tool again and choose Show hidden updates instead.
Method 10: Free Up Disk Space and Use Storage Sense
Windows feature updates need 20 to 30 GB of free space to extract installation files. Cumulative updates need 5 to 10 GB. Without space, the install fails silently.
Open Settings, System, Storage. Toggle Storage Sense to On so Windows automatically deletes temporary files and old recycle bin contents. Set the cleanup frequency to Every Week.
For one-time cleanup, search “Disk Cleanup” in the Start menu. Select your C: drive, then click Clean up system files. Tick Previous Windows installations, Temporary files, Delivery Optimization Files, and Recycle Bin.
Aim for 30 GB free before retrying a feature update. Quality updates need less, but more headroom prevents failures.
Method 11: Fix Windows 11 24H2 Specific Update Issues
Windows 11 24H2 brought several known issues that block or break updates. Most have official workarounds from Microsoft.
| 24H2 Issue | Recommended Fix |
|---|---|
| Bluetooth audio breaks after install | Roll back the Bluetooth driver in Device Manager |
| File Explorer crashes on right-click | Reset File Explorer cache, install latest cumulative update |
| Outlook classic stops opening | Reinstall Outlook from the Microsoft 365 portal |
| 0x80070643 on Recovery Environment update (KB5034441) | Manually expand the WinRE partition or skip via registry tweak |
| Stuck at 8% during install | Disable third-party antivirus, clear cache, retry |
| Snapdragon X Elite ARM driver mismatch | Install Qualcomm driver from Microsoft Update Catalog |
| Auto HDR breaks after 24H2 | Toggle Auto HDR off and on in Settings, System, Display |
| Wi-Fi 6E drops randomly | Update Intel Wi-Fi driver from manufacturer site |
The KB5034441 issue is the most common 24H2 blocker. The fix requires expanding the Windows Recovery Environment partition by 250 MB. Microsoft published the official PowerShell script on its support site.
Method 12: Look Up Your Exact Windows Update Error Code
Every Windows Update failure shows a hexadecimal error code. Match yours to this table for the fastest diagnosis.

| Error Code | Cause | Quick Fix |
|---|---|---|
| 0x80070002 | Update file missing or moved | Clear SoftwareDistribution cache |
| 0x80070003 | Same as above, file path issue | Clear cache, run SFC |
| 0x80070005 | Access denied, permission issue | Run as administrator, check antivirus |
| 0x800705b4 | Update timed out | Check internet, restart PC |
| 0x8007000d | Update files corrupted | Clear cache, manual install from Catalog |
| 0x8007000E | Insufficient memory | Free up disk space and RAM |
| 0x80070020 | Another process blocking update | Disable antivirus, clean boot |
| 0x80070057 | Corrupted system files | Run DISM and SFC |
| 0x80070422 | Windows Update service disabled | Enable wuauserv in services.msc |
| 0x80070643 | KB5034441 WinRE partition issue | Expand WinRE or use registry workaround |
| 0x800F081F | Missing source files | Run DISM with /Source switch |
| 0x800F0922 | Insufficient disk space, .NET issue | Free 20 GB, repair .NET Framework |
| 0x80240034 | Stuck install, connection issue | Restart services, check internet |
| 0x80246007 | Required files unavailable | Reset components, retry |
| 0x80248014 | Windows Update database problem | Reset components |
| 0xC1900101 | Driver incompatibility | Roll back or update graphics and network drivers |
For 0xC1900101 specifically, open Device Manager and right-click your graphics adapter. Choose Update driver, then Search automatically. If that fails, download the latest driver directly from NVIDIA, AMD, or Intel.
When to Reset This PC, In-Place Upgrade, or Clean Install
When all 12 methods fail, three nuclear options remain. Pick based on what you want to keep.
| Option | Keeps Files | Keeps Apps | Difficulty | Best For |
|---|---|---|---|---|
| Reset This PC | Optional | No | Easy | Repeated update failures |
| In-Place Upgrade (Setup.exe from ISO) | Yes | Yes | Medium | Stuck on a feature update |
| Clean Install (Media Creation Tool) | No | No | Hard | Major corruption, last resort |
Reset This PC lives in Settings, System, Recovery. It reinstalls Windows while letting you keep personal files. An In-Place Upgrade uses a Windows ISO and runs Setup.exe from inside Windows. It keeps everything intact.
A Clean Install wipes the drive and starts fresh. Use the Media Creation Tool from microsoft.com/software-download to create a bootable USB. Always back up files first.
How to Prevent Future Windows Update Issues
Most update problems are preventable with simple habits. Build these into your monthly PC routine.
- Keep at least 20 GB free disk space at all times.
- Restart your PC at least once a week to clear pending updates.
- Avoid third-party update tools, registry cleaners, and “system optimizers.”
- Set Active Hours in Settings so updates do not interrupt work.
- Install Patch Tuesday updates within a week of release (second Tuesday each month).
- Keep BIOS, chipset, and graphics drivers current from your OEM (Dell, HP, Lenovo, ASUS).
- Sign into Windows with a Microsoft account so the BitLocker recovery key syncs to the cloud.
- Run Disk Cleanup once a month to clear Windows Update leftovers.
AxeeTech also covers other tech guides, including: Roblox Installation error on Windows | The “hf-xet-1.1.10-py310h63875d3_0” Error on Windows |
Frequently Asked Questions
How do I fix Windows update issues easily on Windows 11?
Open Settings, System, Troubleshoot, Other troubleshooters, then run the Windows Update troubleshooter. If that fails, clear the SoftwareDistribution folder and run DISM and SFC scans. These three steps fix most Windows 11 update issues without advanced tools.
Why does my Windows update keep failing?
Updates fail most often due to corrupted cache files, low disk space, broken Windows Update services, or driver conflicts. Third-party antivirus software also blocks update files. Run the troubleshooter first, then reset the SoftwareDistribution folder.
How do I clear the Windows update cache?
Stop the wuauserv and BITS services in services.msc, then delete everything inside C:\Windows\SoftwareDistribution. Restart both services and retry Windows Update. The cache rebuilds automatically with fresh files from Microsoft.
What is the SoftwareDistribution folder?
SoftwareDistribution is the folder where Windows stores downloaded update files before installation. It sits at C:\Windows\SoftwareDistribution. When files inside corrupt, Windows Update fails until you clear them.
How do I fix Windows update error 0x80070002?
Error 0x80070002 means an update file is missing or moved. Clear the SoftwareDistribution cache first, then run the Windows Update Troubleshooter. If the error returns, install the update manually from the Microsoft Update Catalog.
How do I fix Windows update error 0xC1900101?
Error 0xC1900101 is always a driver problem during feature updates. Open Device Manager and update your graphics, network, and storage drivers. Disconnect external USB devices and try again. Manufacturer driver downloads work better than Windows Update for this error.
Can I uninstall a bad Windows update?
Yes. Open Settings, Windows Update, Update history, Uninstall updates. Select the bad update and click Uninstall. Windows will restart and remove it. Use Wushowhide.diagcab afterward to prevent the same update from reinstalling.
Is it safe to delete the SoftwareDistribution folder?
Yes, deleting the contents of SoftwareDistribution is safe and routine. Windows recreates the folder structure and downloads fresh update files automatically. Stop the Windows Update service first to avoid file lock errors.
How long should a Windows update take?
Cumulative quality updates take 5 to 20 minutes. Feature updates like 24H2 take 30 to 90 minutes depending on your CPU and SSD speed. If an update sticks at the same percentage for over an hour, restart and run the troubleshooter.
How do I fix Windows update on Windows 11 24H2?
For the KB5034441 error 0x80070643, expand the WinRE partition using Microsoft’s official PowerShell script. For Bluetooth, File Explorer, and Outlook breaks after 24H2, install the latest cumulative update or roll back the affected driver in Device Manager. The 24H2 issue table in Method 11 covers each fix.
Is a freelance tech writer based in the East Continent, is quite fascinated by modern-day gadgets, smartphones, and all the hype and buzz about modern technology on the Internet. Besides this a part-time photographer and love to travel and explore. Follow me on. Twitter, Facebook Or Simply Contact Here. Or Email: info@axeetech.com
