SC
Software Conspiracy

Windows Update Errors

Windows Update error 0x80246009 — BITS Job Cancelled — How to fix (2026)

Windows Update error 0x80246009 — BITS Job Cancelled appears when the Background Intelligent Transfer Service cancelled the download mid-transfer. The fix is almost always to reset the update components and repair the component store. Follow the steps in order — most users are done after step 2.

Time
20 min
Difficulty
medium
Applies to
Windows 11, Windows 10
Updated
May 25, 2026

Error message

There were some problems installing updates, but we'll try again later. (0x80246009)

Symptoms

  • Windows Update shows: "0x80246009"
  • The same KB or cumulative update fails repeatedly
  • Windows Update sticks at a percentage (often 0%, 30% or 90%) before failing
  • The error appears in C:\Windows\WindowsUpdate.log or Event Viewer

Likely causes

  • Corrupted update cache (SoftwareDistribution)
  • Damaged Windows component store (WinSxS)
  • Insufficient free space on C: drive
  • Third-party antivirus blocking the Windows Update service
  • Stuck or disabled Background Intelligent Transfer Service (BITS)

How to fix it — step by step

  1. 01

    Run the Windows Update Troubleshooter

    Open Settings → System → Troubleshoot → Other troubleshooters → Windows Update → Run. The troubleshooter fixes the most common cases of 0x80246009 on its own.

  2. 02

    Reset the Windows Update components

    Stop the services that own the update cache, clear the cache, and restart the services. Run each line in an elevated PowerShell.

    net stop wuauserv
    net stop bits
    net stop cryptsvc
    Rename-Item C:\Windows\SoftwareDistribution SoftwareDistribution.old
    Rename-Item C:\Windows\System32\catroot2 catroot2.old
    net start wuauserv
    net start bits
    net start cryptsvc
  3. 03

    Repair the Windows component store

    0x80246009 often fires when the component store is corrupted. Repair it with DISM, then run SFC.

    DISM /Online /Cleanup-Image /RestoreHealth
    sfc /scannow
  4. 04

    Free up disk space on C:

    Windows Update fails on full drives — you need at least 20 GB free on the system drive for a feature update. Use cleanmgr.exe, then "Clean up system files" and tick everything except the current Windows installation.

  5. 05

    Install the update manually from the Microsoft Update Catalog

    If a specific KB keeps failing, download it directly from catalog.update.microsoft.com and install the .msu as Administrator. This bypasses the broken Windows Update client entirely.

  6. 06

    In-place upgrade as a non-destructive last resort

    If 0x80246009 survives everything above, download the Windows ISO from Microsoft, mount it, and run setup.exe from inside Windows. Choose "Keep personal files and apps" — this repairs the OS without touching your data.

Frequently Asked Questions

Related fixes