Basics

9 reasons why Update settings don’t work in Windows 10 (and how to fix it)

A Windows Update setting that refuses to work usually has a specific cause, and most problems can be resolved without reinstalling Windows. If Update settings don’t work in Windows 10, this article explains the common reasons and gives clear, step‑by‑step fixes you can apply right away.

You’ll learn why Update settings fail (services, corrupted files, network, policies, disk space, antivirus interference, and more) and how to repair each cause safely.

Key Takeaway

Most update-setting issues are caused by broken Windows Update components, disabled services, or external blockers (network or antivirus); running the built‑in Windows Update Troubleshooter, restarting Update services, resetting the SoftwareDistribution/catroot2 folders, and repairing system files (SFC/DISM) will fix the majority of cases.

Quick Fix Guide

Reason for the Problem Quick Solution
Windows Update or related service is stopped/disabled Start and set Windows Update, Background Intelligent Transfer Service (BITS) and Cryptographic Services to Automatic and run them.
Corrupted Windows Update components (SoftwareDistribution/catroot2) Stop update services, rename or delete C:\Windows\SoftwareDistribution and C:\Windows\System32\catroot2, then restart services.
Network issues or metered connection Turn off Set as metered connection and ensure network connectivity; run Windows Update Troubleshooter.
Insufficient disk space Free space via Settings > System > Storage or delete temporary files and old update files.
Third‑party antivirus or firewall blocking updates Temporarily disable/uninstall antivirus or firewall and retry updates.
Group Policy or Registry blocking updates Check gpedit.msc or registry keys under HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate and reset to default.
Corrupt system files Run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth from an elevated Command Prompt.
Pending restart or stuck installation Restart PC and check Settings > Update & Security > Windows Update > View update history; use Safe Mode if necessary.
Outdated Windows Update Agent or incorrect time/date Sync Date & time, run Windows Update again or update using Media Creation Tool for offline install.

Detailed Fixes for “Update settings don’t work in Windows 10”

1. Windows Update or related service is stopped or disabled

Why this causes the problem

  • Windows Update depends on several services (like Windows Update, BITS, Cryptographic Services). If any of these are stopped or set to Disabled, the Update settings won’t work.
See also  12 reasons why Microsoft Edge doesn’t work in Windows 10 (and how to fix it)

Step-by-step solution

  1. Open Start, type services.msc, and press Enter.
  2. Locate Windows Update, Background Intelligent Transfer Service (BITS), and Cryptographic Services.
  3. For each service:
    • Double-click the service.
    • Set Startup type to Automatic (Delayed Start) or Automatic.
    • Click Start (if not running), then OK.
  4. Restart your PC and check Settings > Update & Security > Windows Update.

Notes/tips: If a service fails to start, right‑click and choose Properties > Log On to ensure it’s using the local system account, then try again.


2. Corrupted Windows Update components (SoftwareDistribution / catroot2)

Why this causes the problem

  • Windows temporarily stores download and update metadata in SoftwareDistribution and signature data in catroot2; corruption here prevents updates from applying.

Step-by-step solution

  1. Open Command Prompt as Administrator: start menu, type cmd, right‑click Command Prompt, choose Run as administrator.
  2. Stop update services:
    • net stop wuauserv
    • net stop bits
    • net stop cryptsvc
  3. Rename the folders:
    • ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    • ren C:\Windows\System32\catroot2 catroot2.old
  4. Restart services:
    • net start wuauserv
    • net start bits
    • net start cryptsvc
  5. Open Settings > Update & Security > Windows Update and click Check for updates.

Notes/tips: Renaming keeps a backup. If renaming fails, boot into Safe Mode and try again.


3. Network issues or metered connection

Why this causes the problem

  • Windows may pause updates on unstable networks or when the connection is set as metered to save data; firewall or router problems can also block update servers.

Step-by-step solution

  1. Check connection: open a browser and visit a website to verify internet access.
  2. Disable metered connection:
    • Settings > Network & Internet > Wi‑Fi (or Ethernet) > Manage known networks > [Your network] > Properties and set Set as metered connection to Off.
  3. Run Troubleshooter:
    • Settings > Update & Security > Troubleshoot > Additional troubleshooters > Windows Update > Run the troubleshooter.
  4. If using a VPN, temporarily disconnect it and test updates.

Notes/tips: If a corporate network blocks Windows Update, contact your network admin or try a different network (mobile hotspot).


4. Insufficient disk space

Why this causes the problem

  • Updates (especially feature updates) require significant free space; if space is low, Update settings can fail.

Step-by-step solution

  1. Check free space: Settings > System > Storage.
  2. Free space quickly:
    • Settings > System > Storage > Temporary files and remove update cache/temporary files.
    • Run Disk Cleanup: Start > type Disk Cleanup, choose system drive, then Clean up system files and remove previous Windows installations if present.
  3. Move large files to external drive or uninstall unused apps via Settings > Apps > Apps & features.
  4. Retry updates in Settings > Update & Security > Windows Update.

Notes/tips: For feature updates needing extra space, Windows may suggest using external storage—connect a USB drive if prompted.

See also  9 reasons why NTFS format doesn’t work in Windows 10 (and how to fix it)

5. Third‑party antivirus or firewall blocking updates

Why this causes the problem

  • Some security software blocks Windows Update network traffic or modifies system components Windows Update needs.

Step-by-step solution

  1. Temporarily disable the third‑party antivirus/firewall (right‑click its system tray icon or open the program and choose Disable or Protection off).
  2. Attempt update: Settings > Update & Security > Windows Update > Check for updates.
  3. If updates succeed, reconfigure or replace the security product; update the AV to the latest version and enable it again.
  4. If you must uninstall:
    • Settings > Apps > Apps & features, select the security program, and choose Uninstall. Restart and try updates.

Notes/tips: Don’t forget to re-enable security after updating. Use Microsoft Defender if you temporarily remove third‑party AV.


6. Group Policy or Registry blocking updates

Why this causes the problem

  • Enterprise Group Policy or registry settings can disable updates or point Windows to WSUS servers, preventing normal update behavior.

Step-by-step solution (Local Group Policy)

  1. Press Win + R, type gpedit.msc, press Enter.
  2. Navigate Computer Configuration > Administrative Templates > Windows Components > Windows Update.
  3. Look for policies like Configure Automatic Updates or Remove access to use all Windows Update features; set them to Not Configured to restore default behavior.
  4. Run gpupdate /force in an elevated Command Prompt.

Step-by-step solution (Registry)

  1. Open Registry Editor: Win + R, type regedit, Enter.
  2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate and HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU.
  3. If you see keys enforcing update servers, right‑click and export (backup), then delete keys like WUServer, WUStatusServer, or reset AUOptions to default (delete the key or set to appropriate default).
  4. Restart and check for updates.

Notes/tips: Edit registry only if you’re comfortable; backup keys before removing. On domain-joined machines, domain GPO can reapply settings.


7. Corrupt system files

Why this causes the problem

  • Corrupted system files can break Windows Update components; SFC and DISM repair these files.

Step-by-step solution

  1. Open Command Prompt (Admin).
  2. Run system file checker:
    • sfc /scannow
  3. If SFC reports issues it couldn’t fix, run DISM:
    • DISM /Online /Cleanup-Image /RestoreHealth
  4. After DISM completes, run sfc /scannow again.
  5. Restart and check Windows Update.

Notes/tips: DISM uses Windows Update to download replacement files; ensure internet access or use a repair source with /Source if needed.


8. Pending restart or stuck installation

Why this causes the problem

  • A previous update may require a reboot to finish; pending operations can block further update actions.

Step-by-step solution

  1. Reboot your PC using Start > Power > Restart.
  2. Check Settings > Update & Security > Windows Update > View update history for errors.
  3. If updates are stuck, try installing in Safe Mode with Networking:
    • Settings > Update & Security > Recovery > Advanced startup > Restart now > Troubleshoot > Advanced options > Startup Settings > Restart > Press 5 for Safe Mode with Networking.
  4. From Safe Mode, run the Windows Update Troubleshooter and retry updates.
See also  10 reasons why Hibernation doesn’t work in Windows 10 (and how to fix it)

Notes/tips: If the system keeps booting into a loop, use Advanced Startup to perform a System Restore to a point before the issue.


9. Outdated Windows Update Agent or incorrect Date & Time

Why this causes the problem

  • If the Windows Update Agent is very old or system date/time is incorrect, secure connections to update servers may fail and updates will not process.

Step-by-step solution

  1. Sync date and time:
    • Settings > Time & Language > Date & time, turn Set time automatically to On, click Sync now.
  2. Update Windows Update Agent:
    • Open Settings > Update & Security > Windows Update, click Check for updates or download the latest Windows Update Agent or cumulative update manually from the Microsoft Update Catalog.
  3. As an alternative, use Media Creation Tool:
    • Download from Microsoft’s site and use it to upgrade in-place which installs the latest updates.

Notes/tips: Incorrect time is a common cause of certificate errors; always check this first.


Prevention and maintenance tips

  • Run Windows Update Troubleshooter periodically: Settings > Update & Security > Troubleshoot.
  • Keep disk space free (at least 15–20 GB recommended for feature updates).
  • Use Microsoft Defender for compatibility or ensure third‑party AV is compatible with updates.
  • Create regular restore points or full backups before major updates.
  • Keep device drivers updated from manufacturer websites to reduce compatibility errors.

FAQ

What if Windows Update still fails after following all fixes?

If nothing works, consider creating a Windows 10 installation USB using the Media Creation Tool and performing an in-place upgrade/repair (this preserves apps and files). As a last resort, clean install Windows after backing up data.

Can I manually download and install updates?

Yes—visit the Microsoft Update Catalog (catalog.update.microsoft.com), search the KB number, download the appropriate update, and install it manually.

Will resetting Windows Update components delete my files or apps?

No—resetting components (renaming SoftwareDistribution or catroot2) affects only update cache and metadata; it does not remove personal files or installed programs.

How can I prevent future update problems?

Keep system drivers current, allow automatic updates, avoid third‑party tools that modify system update behavior, and regularly free disk space. Create system backups before major feature updates.

Is it safe to disable Windows Update permanently?

Generally no—disabling Windows Update leaves your system vulnerable to security risks. Use Pause updates only temporarily and keep critical updates installed.


Conclusion

Most problems where Update settings don’t work in Windows 10 are solvable with targeted fixes: restart update services, reset update folders, repair system files, check network and antivirus settings, and address policy or disk space issues. Following the steps above will resolve the majority of Windows Update configuration issues and restore normal update behavior.

About the author

Jonathan Dudamel

Jonathan Dudamel

I'm Jonathan Dudamel, an experienced IT specialist and network engineer passionate about all things Windows. I have deep expertise in Microsoft project management, virtualization (VMware ESXi and Hyper-V), and Microsoft’s hybrid platform. I'm also skilled with Microsoft O365, Azure ADDS, and Windows Server environments from 2003 through 2022.

My strengths include Microsoft network infrastructure, VMware platforms, CMMS, ERP systems, and server administration (2016/2022).