Quick Answer
Windows Update Error 0x80070422 is most often caused by the Windows Update service being disabled. To fix it quickly, open Services, set Windows Update to Manual or Automatic, start the service, then try Windows Update again.
- Press Windows + R, type services.msc, and press Enter.
- Find Windows Update.
- Double-click it and set Startup type to Manual or Automatic.
- Click Start, then Apply and OK.
- Go to Settings > Windows Update and click Check for updates.
If the Start button is greyed out or the service turns off again, continue with the command-line and policy checks below. Those usually fix stubborn cases.
Problem
You may see Windows Update Error 0x80070422 when checking for updates in Windows 11 or Windows 10. The message can appear in the Settings app, Microsoft Store updates, Windows Defender updates, or while installing cumulative updates.
The error commonly appears when Windows cannot start a required update service. In plain terms, Windows is ready to update, but the background service responsible for downloading or installing updates is disabled, blocked, or misconfigured.
Cause
The error code 0x80070422 usually points to a disabled service. For Windows Update, the main service is wuauserv, but Windows also depends on BITS, Cryptographic Services, and Windows Modules Installer.
| Service | Why it matters |
|---|---|
| Windows Update | Detects, downloads, and installs updates. |
| Background Intelligent Transfer Service | Transfers update files in the background. |
| Cryptographic Services | Validates update signatures and catalogs. |
| Windows Modules Installer | Installs and modifies Windows components. |
Prerequisites
- Use an administrator account.
- Save your work before restarting services.
- If this is a work or school PC, some update settings may be controlled by your organization.
- Temporarily disconnect from VPN software if updates repeatedly fail after services are fixed.
Step-by-step Solution
1. Enable the Windows Update service
- Press Windows + R.
- Type services.msc and press Enter.
- Double-click Windows Update.
- Change Startup type to Manual. If that does not work, use Automatic.
- Click Start.
- Click Apply, then OK.
Now open Settings > Windows Update and select Check for updates.
2. Start required update services from Command Prompt
If Services will not start properly, run the service configuration commands manually.
- Right-click Start.
- Select Terminal (Admin) or Command Prompt (Admin).
- Run these commands:
sc config wuauserv start= demand
sc config bits start= delayed-auto
sc config cryptsvc start= auto
sc config trustedinstaller start= demand
net start wuauserv
net start bits
net start cryptsvc
net start trustedinstallerImportant: keep the space after start=. The sc config command requires it.
3. Run the Windows Update troubleshooter
The troubleshooter can repair common registry entries and service permissions.
- Open Settings.
- Go to System > Troubleshoot > Other troubleshooters.
- Find Windows Update.
- Click Run.
- Apply the recommended fixes and restart the PC.
4. Reset Windows Update components
If Windows Update Error 0x80070422 remains, reset the local update cache. This does not remove your personal files.
Open Terminal (Admin) and run:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
ren %windir%\SoftwareDistribution SoftwareDistribution.old
ren %windir%\System32\catroot2 catroot2.old
net start wuauserv
net start bits
net start cryptsvc
net start msiserverAfter running the commands, restart Windows and check for updates again.
5. Check Group Policy settings
On Windows Pro, Enterprise, or Education, a policy may disable updates.
- Press Windows + R, type gpedit.msc, and press Enter.
- Go to Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage end user experience.
- Open Configure Automatic Updates.
- Set it to Not Configured or Enabled.
- Restart the PC.
If you are on Windows Home, skip this step because Local Group Policy Editor is not included by default.
6. Repair system files
Corrupt system files can stop update services from starting. Run DISM first, then SFC.
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannowWait for both commands to complete, restart the computer, and try Windows Update again.
Examples
Example: Windows Update service is disabled
If Windows Update shows Startup type: Disabled in Services, change it to Manual, click Start, and run Windows Update again. This is the most common fix.
Example: Error returns after reboot
If the service keeps disabling itself, check third-party “debloat,” privacy, or optimizer tools. Some of these tools disable Windows Update in the background.
Common Causes
- Windows Update service is disabled.
- BITS or Cryptographic Services is stopped.
- Local update cache is damaged.
- Group Policy is blocking automatic updates.
- Security or system optimization software changed service settings.
- Corrupted Windows system files.
Common Mistakes
- Disabling Windows Update permanently: this often causes Microsoft Store, Defender, and driver updates to fail too.
- Deleting update folders manually while services are running: stop update services first or use the commands above.
- Ignoring managed-device policies: work PCs may require IT administrator changes.
- Forgetting the space in sc config commands: use start= demand, not start=demand.
Best Practices
- Keep Windows Update set to Manual or Automatic, not Disabled.
- Avoid registry cleaners and update-blocking scripts unless you fully understand the changes.
- Create a restore point before changing policies or services on a heavily customized PC.
- Restart Windows after resetting update components.
- Install servicing stack and cumulative updates promptly when they become available.
Verification
Use this checklist to confirm the fix worked:
- Open Services and confirm Windows Update is not disabled.
- Open Settings > Windows Update.
- Click Check for updates.
- Confirm the error Windows Update Error 0x80070422 no longer appears.
- Restart the PC and check again to make sure the service setting persists.
Most PCs are fixed after enabling Windows Update and BITS. If the error continues after all steps, check whether your device is managed by an organization or blocked by third-party security software.