To re-enable updates, open Settings > Windows Update, resume updates, then set the update service to Automatic.
If your PC has stopped pulling patches, you lose security fixes, driver updates, and bug repairs. The good news: Windows usually isn’t “broken” here. Most of the time it’s a paused toggle, a disabled service, a policy setting, or a network choice that blocks downloads.
This walkthrough shows the cleanest way to switch updates back on in Windows 11 and Windows 10, then proves the fix worked. It also covers the common reasons the switch won’t stay on and the exact settings that tend to be hiding in plain sight.
How To Turn On Windows Update On Windows 11 And 10
Start with Settings. It’s the safest path because it flips the user-facing switches first, then Windows can handle the rest.
Step 1: Check The Pause Toggle
Windows can pause updates for days or weeks. When that’s active, it can look like updates are “off,” even while the rest is healthy.
- Open Settings.
- Go to Windows Update (Windows 11) or Update & Security > Windows Update (Windows 10).
- If you see a pause date or “Updates paused,” choose Resume updates.
After resuming, press Check for updates. Let it run for a minute. If you see downloads begin, you’re done and can skip to the verification section.
Step 2: Confirm You’re Not On A Metered Connection
Metered connections can block downloads to save data. That’s handy on hotspots, but it can stall patches for weeks.
- Wi-Fi: Settings > Network & internet > Wi-Fi > your network > turn Metered connection off.
- Ethernet: Settings > Network & internet > Ethernet > turn Metered connection off.
If you truly need metered mode, leave it on and use Download prompts when Windows offers them. Just know you may need to tap that button each month.
Step 3: Confirm Date, Time, And Time Zone
Wrong system time can break secure connections and cause update checks to fail with vague errors.
- Settings > Time & language > Date & time.
- Turn on Set time automatically and Set time zone automatically when available.
- Select Sync now.
Turning On Windows Updates When The Service Is Disabled
If Settings looks fine yet downloads never start, the Windows Update service may be stopped or set to Disabled. This can happen after “tweaks,” third-party repair tools, or aggressive debloat scripts.
Step 1: Set The Windows Update Service To Automatic
- Press Win + R, type services.msc, press Enter.
- Find Windows Update.
- Double-click it, set Startup type to Automatic (or Manual if Automatic isn’t available), then select Start.
- Select Apply and OK.
Next, find Background Intelligent Transfer Service (BITS) and set it to Automatic (Delayed Start) or Manual, then start it. Updates rely on BITS to move files in the background without hogging your connection.
Step 2: Reboot And Retry From Settings
A restart clears stuck update sessions and restarts background tasks. After reboot, go back to Windows Update and press Check for updates.
When Settings Keeps Switching Updates Off
If updates turn back off after you fix them, something is enforcing a rule. On work or school PCs, that rule can be normal device management. On home PCs, it’s usually Group Policy, registry changes, or security software.
Work Or School Devices: Check Management First
Open Settings > Accounts > Access work or school. If you see an organization connection, your PC may be managed. In that case, update rules can be set centrally. You can still run Windows Update, yet some controls may be locked. If you can’t change them, use your internal IT channel.
Home PCs: Review Group Policy Settings
Group Policy is available in Pro and Enterprise editions. A single policy can block update checks or force a “notify only” mode that looks like nothing is happening.
- Press Win + R, type gpedit.msc, press Enter.
- Go to Computer Configuration > Administrative Templates > Windows Components > Windows Update.
- Open Configure Automatic Updates.
- Pick Not Configured (lets Windows defaults apply) or choose an enabled mode like Auto download and schedule the install.
Also scan for policies that mention disabling access to Windows Update features or turning off the Windows Update service. Set those to Not Configured unless you truly meant to restrict updates.
Windows Home: Registry Checks That Commonly Block Updates
Windows Home doesn’t include the policy editor, yet registry values can still mirror those settings. If you used a “tweak” tool in the past, this is where the leftovers often sit.
- Press Win + R, type regedit, press Enter.
- Go to HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate.
- Look for values like DisableWindowsUpdateAccess or NoAutoUpdate.
- Delete those values, or set them to 0.
Be careful in the registry. If you’re unsure, export the registry entry first (File > Export) so you can restore it.
Why Windows Update Won’t Download Even When It’s On
Sometimes updates are on, yet downloads still don’t start. In that case, the system may be stuck in a failed state, a component store problem may block servicing, or the update cache may be corrupted.
Microsoft’s official troubleshooting flow is a good reference when you want the vendor’s view of common failures. This page explains built-in troubleshooters and the basic repair path: Windows Update troubleshooting steps.
Run The Built-In Troubleshooter
- Settings > System > Troubleshoot > Other troubleshooters (Windows 11).
- Run Windows Update.
- Apply fixes it offers, then reboot.
On Windows 10: Settings > Update & Security > Troubleshoot > Additional troubleshooters > Windows Update.
Clear The Update Cache The Safe Way
The cache lives in SoftwareDistribution. Clearing it forces Windows to rebuild the download database. The safest approach is to stop services first, clear the folder, then start services again.
- Open Command Prompt as Administrator.
- Run: net stop wuauserv and net stop bits.
- Delete contents of C:\\Windows\\SoftwareDistribution\\Download.
- Run: net start bits and net start wuauserv.
- Return to Settings and press Check for updates.
Common Causes And Fixes At A Glance
This table groups the most common “updates are off” and “updates won’t run” symptoms, what usually causes them, and the cleanest setting to change first.
| What You See | Likely Cause | First Fix To Try |
|---|---|---|
| “Updates paused” banner | Pause toggle set | Resume updates in Settings |
| Check for updates does nothing | Windows Update service stopped | services.msc > set Windows Update to Automatic, start it |
| Downloads stuck at 0% | BITS not running | Start BITS, set to Manual or Automatic (Delayed Start) |
| Error 0x80072* | Clock or TLS handshake problem | Fix date/time, sync clock, retry |
| Updates blocked on Wi-Fi only | Metered connection enabled | Turn off metered mode for that network |
| Settings page shows controls greyed out | Device management rules | Check work/school connection; use admin channel if needed |
| “Your organization has turned off…” | Policy or registry enforcement | Set policies to Not Configured; remove blocking registry values |
| Install fails after download | Servicing stack or component store issue | Run DISM and SFC, then retry |
| Repeated rollback after reboot | Driver or disk errors | Free space, update drivers, run disk check |
Fixes That Work When Windows Update Is Stuck
If the basic switches are correct and the cache reset didn’t help, move to system repair checks. These steps don’t “hack” Windows. They repair files Windows uses to service updates.
Check Free Space And Pending Reboots
Feature updates can need a lot of space. If your system drive is tight, Windows may keep retrying in the background and then stop. Aim for at least 15–20 GB free space for major releases. Restart once before deeper repairs, even if you restarted earlier.
Run SFC And DISM In The Right Order
SFC checks protected system files. DISM repairs the component store SFC relies on. Run DISM first, then SFC, then reboot.
Use Official Reset Options When The PC Is Truly Damaged
If updates still fail after repairs, your install may be too corrupted. At that point, an in-place repair install keeps your apps and files while rebuilding Windows. Microsoft’s documentation explains repair options and what each one keeps: Repair a Windows image.
Command Checks And Repairs You Can Copy-Paste
This table lists the commands that matter most for Windows Update repair work. Run them in an Administrator Command Prompt or Windows Terminal.
| Command | What It Does | When To Use |
|---|---|---|
| DISM /Online /Cleanup-Image /RestoreHealth | Repairs the component store used by updates | Install failures, repeated errors, missing files |
| sfc /scannow | Repairs protected Windows files | After DISM, or after crashes and power loss |
| net stop wuauserv | Stops the update service | Before clearing SoftwareDistribution |
| net stop bits | Stops background transfer service | Before clearing update downloads |
| net start bits | Starts background transfers | After cache reset |
| net start wuauserv | Starts update checks and installs | After cache reset, after service changes |
| usoclient StartScan | Triggers an update scan task | When Settings won’t start a scan |
| Get-WindowsUpdateLog | Builds a readable update log (PowerShell) | When you need the exact failing stage |
Proof That Updates Are Back On
Don’t rely on a single green checkmark. Use two quick proofs: a scan that returns results, and a service state check.
- Settings > Windows Update > run Check for updates and wait for either downloads or a clear “You’re up to date” message.
- Open services.msc and confirm Windows Update shows Running with a Startup type that isn’t Disabled.
If updates still don’t appear, try the scan again after ten minutes. Windows Update often queues tasks, then runs them on a short delay.
Small Tweaks That Keep Updates Working Month After Month
Once updates run again, a few settings help prevent the same issue from coming back.
Set Active Hours So Restarts Don’t Catch You Off Guard
Active hours reduce surprise reboots. Set them to match your normal work window, then let Windows restart outside that range.
Keep Third-Party “Tweak” Tools Away From Update Settings
If a tool promises to “disable telemetry” or “remove bloat,” it may flip update policies too. If you must use cleanup tools, pick ones that state exactly what they change and let you undo it.
Use Driver Updates With Care
Windows can install drivers through updates. On gaming rigs and creator PCs, you may prefer to install graphics drivers directly from the vendor. If driver updates cause trouble, you can pause updates briefly, install the vendor driver, then resume updates.
References & Sources
- Microsoft.“Windows Update troubleshooting steps.”Outlines vendor-recommended checks and built-in tools for update failures.
- Microsoft.“Repair a Windows image.”Explains official repair options such as DISM-based image repair and repair paths.
