Windows Fixes

How to Fix Windows Update Error 0x800f0983

Issue type: Windows Update — cumulative update fails with error code 0x800f0983. Applies to Windows 10 and Windows 11.

Short answer: To fix Windows Update error 0x800f0983, repair the Windows component store with DISM /Online /Cleanup-Image /RestoreHealth, then run sfc /scannow, restart, and try the update again. This error often points to a servicing or component-store problem, especially after a previous update failed halfway.

Fix Windows Update Error 0x800f0983: Quick Diagnosis

Before running repairs, confirm the exact update and error:

  1. Open Settings > Windows Update.
  2. Click Update history.
  3. Find the failed update and note its KB number.
  4. Confirm the error code is 0x800f0983.
  5. Restart once and try Check for updates again.
  6. If the same code returns, continue with DISM.

If your problem is a different update code, compare with existing TechRoke guides such as Windows Update error 0x80073712 and Windows Update error 0x80070057.

Fix 1: Run the Windows Update Troubleshooter

This is not always enough for 0x800f0983, but it is safe and quick.

  1. Open Settings.
  2. Go to System > Troubleshoot > Other troubleshooters.
  3. Run Windows Update.
  4. Apply the recommended fix.
  5. Restart if prompted.
  6. Try Windows Update again.

If the same error returns, the component store needs repair.

Fix 2: Repair the Component Store with DISM

DISM repairs the Windows image that servicing and update operations depend on.

⚠️ Warning: Keep the PC plugged in and connected to the internet. Do not close the terminal while DISM is running, even if it pauses at a percentage for several minutes.

  1. Right-click Start.
  2. Choose Terminal (Admin) or Command Prompt (Admin).
  3. Run:
DISM /Online /Cleanup-Image /CheckHealth
  1. Then run:
DISM /Online /Cleanup-Image /ScanHealth
  1. Finally run the repair:
DISM /Online /Cleanup-Image /RestoreHealth
  1. Wait for completion, then restart Windows.

Microsoft’s technical reference for repairing Windows images is here: Repair a Windows Image — Microsoft Learn.

Fix 3: Run SFC After DISM

Run SFC after DISM, not before. DISM repairs the source that SFC uses.

sfc /scannow

When it finishes, restart again and try Windows Update. If SFC says it repaired files, that is a good sign. If it says it could not repair some files, run DISM again and repeat SFC once.

Fix 4: Install the Failed KB Manually

If Windows Update delivery is broken but the update package itself is valid, installing the KB manually can bypass the delivery problem.

  1. Copy the KB number from Update history.
  2. Open Microsoft Update Catalog.
  3. Search the KB number.
  4. Download the package matching your Windows version and architecture.
  5. Run the downloaded .msu file as Administrator.
  6. Restart when finished.

Fix 5: Reset Windows Update Components If the Error Keeps Returning

If DISM and SFC repair successfully but 0x800f0983 keeps returning, the update queue may be damaged. Reset the update components by stopping update services, renaming SoftwareDistribution and catroot2, then starting services again. This is more aggressive than clearing only the download cache.

If you see broader failed-install behavior, also check Windows 11 Update Failed to Install.

Common Mistake

A common mistake is running sfc /scannow once, seeing no immediate result, and then trying the same failed update again. For servicing errors, DISM should run first because it repairs the component store used by Windows Update and SFC.

Best Next Step

If nothing works, do not keep retrying the same update endlessly. Download the exact KB manually, check free space, then consider an in-place repair install if the same servicing errors affect multiple updates.

Frequently Asked Questions

What does Windows Update error 0x800f0983 mean?

It usually means the update could not be serviced correctly, often because Windows has a component-store or update staging issue. It does not automatically mean your files are damaged.

Does DISM delete my files?

No. DISM repairs the Windows image and component store. It does not remove personal files, apps, browser data, or documents.

How long should DISM RestoreHealth take?

It often takes several minutes, and sometimes longer on slow PCs or connections. A pause at one percentage for a while is normal.

What if DISM says source files could not be found?

Check your internet connection first. If Windows Update cannot provide repair files, you may need to use a Windows ISO as a repair source with the DISM /Source option.

Should I reset Windows to fix 0x800f0983?

Not first. Try the troubleshooter, DISM, SFC, manual KB install, and update component reset before considering a reset or in-place repair.