Windows Update Not Working on Windows 11: How to Get It Installing Again

Windows Update not working on Windows 11? I walk through the exact order I use — Troubleshooter, cache clear, SFC and DISM — to get updates installing fast.

The progress bar hasn’t moved in an hour, a cryptic error code keeps flashing, or the same update fails in a loop. I have hit all three on my own Windows 11 desktop, and the fix was never a reinstall. *Windows Update not working on Windows 11 is almost always a corrupted cache, a stalled service, or a clock that drifted out of sync — every one fixable with tools already on your PC.*

Below is the exact order I work through, starting with the 60-second checks and escalating only if they fail. No downloads, no paid “optimizer” tools, no command-line risk until you actually need it.

## Quick Answer

Open Settings > Windows Update and click Retry, then run the built-in Troubleshooter under System > Troubleshoot > Other troubleshooters. For stubborn failures, stop the Windows Update service, delete everything inside C:\Windows\SoftwareDistribution\Download, and restart. That clears the corrupted cache behind most stuck updates.

## Why does Windows Update fail on Windows 11?

Windows Update relies on background services, a local download cache, and a live link to Microsoft’s servers. Break any link in that chain and the update stalls:

– **Corrupted update cache** — partially downloaded files confuse the updater.
– **Stopped Windows Update service** — it sometimes crashes silently.
– **Not enough disk space** — updates need roughly 5–10 GB free to download and unpack.
– **Wrong system date or time** — breaks the server’s security handshake.
– **Paused updates** — Windows 11 lets you pause for up to 5 weeks, and it is easy to forget.

Most failures trace back to a stale cache or a service that quietly stopped, not to broken hardware.

*Most failures trace to software, not hardware — which is why the tools on your PC fix them.*

## How do you do the two-minute checks first?

Before touching the command line, I clear the easy causes. These three take under two minutes combined and resolve a surprising number of cases.

### Retry and confirm your connection

1. Open a browser and confirm you are actually online.
2. Go to Settings > Windows Update.
3. Click Check for updates or Retry.

A dropped connection mid-download is a common culprit. When I am pulling a large feature update, I switch from Wi-Fi to a wired Ethernet cable — Wi-Fi drops during a big download often corrupt the file. If your connection itself is unstable, sorting that out first saves you repeating every fix below.

### Make sure updates are not paused

1. Go to Settings > Windows Update.
2. Look for a Resume updates button near the top.
3. Click it if it is there, then click Check for updates.

I have lost ten minutes troubleshooting before noticing I had paused updates myself weeks earlier. Check this first.

### Run the Windows Update Troubleshooter

1. Open Settings (Win + I).
2. Go to System > Troubleshoot > Other troubleshooters.
3. Find Windows Update and click Run.
4. Follow the prompts, restart, then try updating again.

Even when it reports that it “couldn’t fix the problem,” it often silently restarts a blocked service. I always retry Windows Update afterward regardless of what it says.

*These three checks fix paused updates, flaky connections, and broken services without any risk.*

## How do you clear the Windows Update cache?

Corrupted files in the cache are the single most common cause of stuck or looping updates. Clearing them forces Windows to fetch a clean copy. This is the fix that solved my own looping update last year.

1. Press Win + R, type services.msc, and press Enter.
2. Find Windows Update, right-click it, and choose Stop.
3. Do the same for Background Intelligent Transfer Service (BITS).
4. Open File Explorer and go to C:\Windows\SoftwareDistribution\Download.
5. Press Ctrl + A to select all files and delete them. Leave the folder itself in place.
6. Return to Services and start Windows Update and BITS again.
7. Go to Settings > Windows Update and click Check for updates.

If you hit a “file in use” error while deleting, restart your PC and delete the files before opening any other program. For the deeper details on how Windows resets these components, Microsoft’s own Windows Update troubleshooting guide documents the service names and folders.

*Clearing the download cache fixes the majority of stuck and looping updates on its own.*

## How do you repair the update engine with SFC and DISM?

Corrupted system files can silently break the update engine. Two command-line tools repair them, and the order matters.

1. Search for cmd, right-click Command Prompt, and choose Run as administrator.
2. Type sfc /scannow and press Enter. This takes 10–15 minutes.
3. When it finishes, stay online and type DISM /Online /Cleanup-Image /RestoreHealth, then press Enter.
4. Restart your PC and try Windows Update again.

I run SFC first because it flags the corrupt files, then DISM downloads clean replacements from Microsoft’s servers to repair what SFC could not. Reversing the order wastes a pass. These same tools repair the system files behind unrelated breakage too, like a Windows 11 PC that freezes randomly.

*SFC and DISM together repair the underlying files that block updates from finishing.*

## What do you do for date, time, and disk space errors?

Two quieter causes produce failures with no useful error message at all: a drifted clock and a full drive.

### Fix the system clock

1. Right-click the taskbar clock and choose Adjust date and time.
2. Turn on Set time automatically and Set time zone automatically.
3. Click Sync now, then retry Windows Update.

An off clock breaks the security handshake with Microsoft’s servers, and the update simply fails without explaining why.

### Free up disk space

1. Go to Settings > System > Storage.
2. Click Temporary files, select what is safe to remove, and click Remove files.
3. Search for Disk Cleanup in the Start menu, run it, and check Windows Update Cleanup.

Updates fail silently when there is no room to unpack them. If your drive is nearly full, my guide on how to free up disk space on Windows 11 walks through reclaiming gigabytes safely, or move large videos and downloads to an external drive before retrying.

*Syncing the clock and freeing a few gigabytes resolves the failures that show no error code at all.*

## Which fix should you try first?

Work top to bottom. Each row is ordered by how fast and how likely it is to help.

Fix Best for Time needed Difficulty
Retry / Resume Paused updates or minor glitches 1 min Easy
Troubleshooter Most common errors 5 min Easy
Date/time sync Auth errors with no clear cause 2 min Easy
Clear update cache Stuck or looping updates 10 min Moderate
Free disk space “Not enough space” errors 10–15 min Easy
SFC + DISM Persistent error codes 30–60 min Moderate

*Start at the top, retry an update after each step, and stop the moment one works.*

## What mistakes make Windows Update worse?

A few habits turn a stuck update into a corrupted install or send you chasing the wrong fix. Avoid these while you work through the steps above.

– **Turning off the PC mid-install.** Interrupting an update that is actively installing, not just downloading, can corrupt Windows. Watch for drive activity before giving up.
– **Ignoring error codes.** Codes like 0x80070002 or 0x800f0922 each point to a specific fix. Search the exact code rather than guessing.
– **Deleting the SoftwareDistribution folder itself.** Only delete the files inside C:\Windows\SoftwareDistribution\Download. The folder must remain.
– **Updating over a metered connection.** Windows 11 blocks large updates on metered connections like mobile hotspots. Go to Settings > Network and disable “Metered connection” temporarily.
– **Skipping restarts.** Most fixes only take effect after a full reboot. Do not assume a fix failed before you have restarted.

*Avoid these five habits and you stop turning a stalled update into a bigger repair job.*

## Frequently Asked Questions

### Why does Windows 11 say “Update failed” with no explanation?

It is almost always a corrupted cache or a stopped service. Run the Troubleshooter first, then clear the cache if that does not resolve it. On my own PC, an “Update failed” with no code cleared the moment I emptied the SoftwareDistribution\Download folder and restarted.

### How long should a Windows 11 update take?

Security updates usually take 5–20 minutes; major feature updates can run 30–90 minutes. If the same percentage has not changed in over two hours with no drive activity, a restart is safe. I once let a feature update sit at 61% for 40 minutes before the drive light confirmed it was still writing.

### What does Windows Update error 0x80070005 mean?

It is a permissions error, usually a third-party antivirus blocking the update. Temporarily disable the antivirus, retry, then re-enable it. When this hit a friend’s laptop, adding Windows Update to the antivirus exclusion list stopped it from recurring.

### Can I manually download Windows 11 updates?

Yes. Visit the Microsoft Update Catalog at catalog.update.microsoft.com and search for the KB number shown in Windows Update. I keep this open as a fallback when the automatic updater keeps failing on one specific KB while everything else installs fine.

### Will clearing SoftwareDistribution delete my personal files?

No. It only removes Windows Update’s temporary download files, never your documents, photos, or installed apps. I have done it dozens of times and have never lost a single personal file.

## Conclusion

Windows Update not working on Windows 11 is almost always fixable with the tools already on your PC. Start with the Troubleshooter and cache clear; those two alone solve most cases, and SFC plus DISM handle the stubborn ones.

Once updates are flowing again, keep the momentum and check my guide on how to speed up a slow Windows 11 PC for the next step.

Speed Up a Slow Windows 11 PC: Free Fixes With No New Hardware

Want to speed up a slow Windows 11 PC for free? I walk through the built-in tweaks I run first, then the deeper fixes, with no new hardware needed at all.

When I want to speed up a slow Windows 11 PC, I never reach for a download or my wallet first. Almost every sluggish machine I have touched got dramatically faster from settings that already ship with Windows. The biggest single win is usually trimming the apps that quietly launch at boot.

I rebuilt this guide around the exact order I work through on my own desktop and on friends’ laptops, starting with the changes that take seconds and moving toward the heavier ones only if you still need them.

Quick Answer

To speed up a slow Windows 11 PC, open Task Manager (Ctrl + Shift + Esc), select the Startup apps tab, and disable programs you do not need at boot. Then clear disk space with Storage Sense, install pending Windows updates, and run a malware scan. Those four steps deliver the biggest gain in minutes.

Start at the top of this list and stop as soon as your PC feels responsive again.

Why is my Windows 11 PC running slow?

Before changing anything, it helps to know what is dragging your machine down. When I diagnose a slow PC, the cause almost always lands in one of these buckets:

  • Too many startup programs draining resources at boot
  • Low disk space on your C: drive
  • Outdated Windows or driver updates
  • Background apps quietly consuming CPU and RAM
  • Malware running hidden processes
  • A fragmented or aging hard drive, especially on HDDs
  • Insufficient RAM for your daily workload

The first time I helped my brother with his laptop, the culprit was eleven startup apps he had never noticed. Once I matched the symptom to the cause, the right fix was obvious.

Identify which bucket fits your symptoms and the correct fix below becomes clear.

How do I disable startup programs and power settings?

These are the changes I always make first because they cost nothing and take under two minutes combined.

Disable startup programs

Startup programs are the single biggest cause of slow boot times. Many apps add themselves to your startup list without ever asking.

  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. Click the Startup apps tab.
  3. Right-click any program you do not need at boot and select Disable.

I disable things like Spotify, Discord, Teams, and OneDrive here; they still open normally when I launch them by hand. If your PC is specifically slow to boot, my guide on how to speed up Windows 11 boot time goes deeper.

Switch to a high performance power plan

Windows 11 defaults to a “Balanced” plan that throttles your CPU to save energy. High Performance unlocks its full speed.

  1. Press Windows + R, type powercfg.cpl, and press Enter.
  2. Click Show additional plans.
  3. Select High Performance.

This helps most on desktops, where power draw is not a concern.

Disabling startup apps and choosing High Performance is the fastest, lowest-risk speed boost available.

How do I free up disk space and trim visual effects?

A nearly full drive and heavy animations both tax an older machine more than people expect.

Free up disk space with Storage Sense

When your C: drive is nearly full, Windows 11 performance drops noticeably. Storage Sense automates the cleanup.

  1. Go to Settings → System → Storage.
  2. Toggle Storage Sense to On.
  3. Click Run Storage Sense now to clear temporary files immediately.

You can also search Disk Cleanup in Start for a one-time pass. For a fuller walkthrough, see my guide on how to free up disk space on Windows 11.

Turn off visual effects

Windows 11 animations and transparency look polished but cost real processing power on slower hardware.

  1. Search for Adjust the appearance and performance of Windows in Start and open it.
  2. Select Adjust for best performance to switch every effect off at once.
  3. Click Apply.

Clearing disk space and cutting animations frees both storage and CPU cycles your PC can put toward real work.

How do I update, scan, and stop background apps?

Outdated files, hidden malware, and chatty background apps quietly steal performance you paid for.

Install Windows and driver updates

  1. Go to Settings → Windows Update and click Check for updates.
  2. For drivers, right-click Start → Device Manager.
  3. Right-click a device → Update driver → Search automatically.

If updates themselves stall, see my guide on how to fix Windows Update not working.

Run a malware scan

Viruses and spyware silently consume CPU and RAM. The built-in Windows Security handles this for free.

  1. Open Windows Security from Start.
  2. Go to Virus & threat protection → Quick scan.
  3. For a deeper pass, choose Scan options → Full scan.

Microsoft’s own performance tips for Windows back up this updates-and-scan routine.

Disable background apps

  1. Go to Settings → Apps → Installed apps.
  2. Click the three-dot menu next to an app → Advanced options.
  3. Under Background apps permissions, select Never.

Keeping the system patched, scanned, and free of idle background apps removes the slowdowns you cannot see.

How do I find and end resource-hungry processes?

Task Manager shows exactly what is eating your CPU and memory in real time.

  1. Open Task Manager (Ctrl + Shift + Esc).
  2. Click the CPU or Memory column header to sort by usage.
  3. Right-click an unnecessary app → End task.

I avoid ending anything named “System,” “svchost.exe,” or anything I do not recognize, and only close apps I know. If one process constantly pins your processor, see my fix for Windows 11 CPU usage at 100%.

Sorting Task Manager by usage reveals the single app most responsible for the lag.

Which deeper tweaks help an aging PC?

If the quick wins are not enough, these heavier adjustments target older hardware specifically. The table shows where each fits best.

Tweak Best for Risk level
Adjust virtual memory Low-RAM PCs that stutter under load Medium
Enable Fast Startup Slow shutdown-to-boot cycles Low
Defragment an HDD Spinning hard drives only Low

Adjust virtual memory

When RAM runs low, Windows borrows drive space as virtual memory. Setting it manually can smooth out stutters.

  1. Open Adjust the appearance and performance of Windows.
  2. Go to the Advanced tab → Virtual memory → Change.
  3. Uncheck Automatically manage, set Initial size to 1.5× your RAM (12,288 MB for 8 GB) and Maximum size to 3× your RAM.

Enable Fast Startup

  1. Go to Control Panel → Power Options → Choose what the power buttons do.
  2. Click Change settings that are currently unavailable.
  3. Check Turn on fast startup and click Save changes.

Defragment an HDD (never an SSD)

On a spinning hard drive, fragmentation slows reads and writes over time. Never defragment an SSD; Windows 11 handles SSD optimization (TRIM) automatically, and defragging shortens an SSD’s life.

  1. Search Defragment and Optimize Drives in Start.
  2. Select your HDD and click Optimize.

These deeper tweaks pay off most on older, low-RAM machines with traditional hard drives.

When is a hardware upgrade worth it?

If software fixes do not fully solve it, hardware is the final frontier and the most impactful change you can make.

  • RAM: 8 GB is the practical minimum for Windows 11; 16 GB is ideal for smooth multitasking.
  • SSD: swapping an HDD for an SSD cut my own boot time from over 60 seconds to under 10 and made everything feel instant.

An SSD or RAM upgrade is the surest fix once free tweaks run out, and it often adds years of life to an old machine.

What mistakes should I avoid when speeding up Windows 11?

  • Disabling antivirus to “free up resources.” Fix: leave Windows Security on; it is lightweight and protects you.
  • Skipping Windows updates. Fix: install them, since they often carry performance patches.
  • Installing third-party “PC booster” apps. Fix: skip them; most are bloatware, and Windows already has every tool you need.
  • Defragmenting an SSD. Fix: never do it; let Windows run TRIM automatically.
  • Ending random system processes. Fix: close only apps you recognize, and run chkdsk if you suspect disk errors.

Avoiding these five traps keeps your speed-up safe, so you gain performance without breaking anything.

Frequently Asked Questions

Why is my Windows 11 PC slow after a recent update?

It is usually temporary: updates run background indexing and configuration right after installing. For example, after a recent feature update my own PC dragged for about 40 minutes, then returned to normal once I restarted. If it persists, check Settings → Windows Update → Update history.

How much RAM do I need for Windows 11 to run smoothly?

8 GB is the realistic minimum, and 16 GB is strongly recommended for multitasking. Microsoft lists 4 GB as the floor, but when I tested an old 4 GB laptop, opening a browser and one app already maxed it out.

Will resetting Windows 11 make my PC faster?

Yes, a reset clears accumulated junk, bloatware, and corrupted files. When I reset a friend’s three-year-old laptop with Settings → System → Recovery → Reset this PC and chose “Keep my files,” it booted like new while keeping her documents.

How do I check what is slowing down my Windows 11 PC?

Open Task Manager (Ctrl + Shift + Esc) and sort by the CPU, Memory, and Disk columns; anything consistently above 80% is a prime suspect. On my desktop this is how I caught a sync app pinning the disk and ended it on the spot.

Can I speed up Windows 11 without installing any software?

Absolutely; every fix here uses built-in tools. I cleaned up my own machine using only Task Manager, Storage Sense, Windows Security, and Power Options, with nothing downloaded.

Does disabling startup programs delete them from my PC?

No, it only stops them launching automatically at boot. The first time I disabled Spotify at startup I worried it was gone, but it opened normally the moment I clicked its icon.

Conclusion

A slow Windows 11 PC is almost always fixable for free. Start with the quick wins, then work down only as far as you need to.

Right now, open Task Manager (Ctrl + Shift + Esc), click the Startup apps tab, and disable every program you do not need at boot. It takes 60 seconds and noticeably speeds up your next startup.