Windows 0x80244010Medium

Error 0x80244010 in Windows Update: Causes and Solutions

Error 0x80244010 occurs when Windows Update Center fails to connect to Microsoft servers. This article provides 5 proven methods to diagnose and fix the issue, from simple service restarts to a full reset of update components.

Updated at March 8, 2026
15 minutes
Medium
FixPedia Team
Применимо к:Windows 10 (version 2004 and newer)Windows 11

Windows Update Error 0x80244010

Error 0x80244010 (code WU_E_PT_HTTP_STATUS_BAD_REQUEST) appears when Windows Update cannot properly communicate with Microsoft's servers. The system receives an invalid HTTP response or fails to establish a connection. This results in the message "We couldn't connect to the update service. We'll try again later." or "An unexpected error occurred."

The problem does not damage the system, but it blocks the installation of security updates and patches, leaving the computer unprotected.

Main Causes

  • Corrupted update cache. Files in the C:\Windows\SoftwareDistribution folder are downloaded with errors.
  • Windows Update service failure. Malfunction of the wuauserv, bits, or cryptsvc services.
  • Antivirus/Firewall blocking. Third-party security software or the built-in firewall is preventing the connection.
  • System file corruption. Missing or damaged DLL components required for updating.
  • Network issues. Incorrect proxy settings, conflicting VPN clients, or an unstable connection.
  • Registry errors. Corrupted keys related to update components.

::in-article-ad::

5 Working Fixes

1. Restart Windows Update Services

This method resolves most temporary service hiccups.

  1. Press Win + R, type services.msc, and press Enter.
  2. Find and stop (right-click → Stop) the services:
    • Windows Update
    • Background Intelligent Transfer Service (BITS)
    • Package Caching (if present; often part of Windows Update)
    • Cryptographic Services
  3. After they have fully stopped, start them again (right-click → Start).
  4. Try checking for updates.

Alternative via PowerShell (Administrator):

Stop-Service -Name wuauserv, bits, cryptsvc -Force
Start-Service -Name wuauserv, bits, cryptsvc

2. Clear the Update Cache

If restarting didn't help, corrupted files in the cache are a likely cause.

  1. Stop the Windows Update service (see method 1).
  2. Open File Explorer and navigate to C:\Windows\SoftwareDistribution.
  3. Delete all contents of the Download and DataStore folders. If the system prevents deletion, ensure the service is completely stopped.
  4. Start the Windows Update service again.
  5. Check for updates. The system will download the files anew.

3. Temporarily Disable Antivirus and Firewall

Aggressive traffic filtering by third-party software is a common cause.

  1. Temporarily disable your antivirus (including Windows Defender if active).
  2. Open Windows Defender Firewall → "Turn Windows Defender Firewall on or off" → disable for both private and public networks.
  3. Try running the update check.
  4. Immediately after successful update installation, re-enable your antivirus and firewall.

4. Check and Repair System Files

Corruption of system components can trigger the error.

  1. Launch Command Prompt or PowerShell as Administrator.
  2. Run the system file integrity check:
    sfc /scannow
    
    Wait for completion (10-20 minutes).
  3. If sfc repaired files, restart your PC and check for updates.
  4. If sfc didn't help or reported unfixable files, perform an image restore:
    DISM /Online /Cleanup-Image /RestoreHealth
    
  5. After DISM completes, run sfc /scannow again, restart the computer, and retry the update check.
Command Prompt window with SFC and DISM commands running for system recovery

5. Full Reset of Windows Update Components

A radical but effective method if nothing else worked.

  1. Stop all related services (Windows Update, BITS, Cryptographic Services), as in method 1.
  2. Rename the cache folders (requires Administrator rights):
    • C:\Windows\SoftwareDistributionSoftwareDistribution.old
    • C:\Windows\System32\catroot2catroot2.old
  3. Reset BITS settings in the registry. Caution: create a registry backup (FileExport) before editing!
    • Open regedit as Administrator.
    • Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\BITS.
    • Delete the State and DownloadTimeout values.
  4. Start the services again.
  5. Restart the computer. On the next update attempt, the system will create new, empty SoftwareDistribution and catroot2 folders.

Simplified Alternative: Run the built-in troubleshooter (msdt.exe /id WindowsUpdateDiagnostic) or the WSReset.exe utility (find via Start menu).

F.A.Q.

Can error 0x80244010 be fixed without restarting?
Does antivirus cause error 0x80244010?
What to do if none of the methods helped?
Is error 0x80244010 dangerous for the system?

Hints

Restart Windows Update services
Clear update cache
Check and repair system files
Temporarily disable antivirus and firewall
Full reset of update components
FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community