DISM RestoreHealth Source Error — Windows Image Repair Cannot Find Source Files
Errorsystem
Overview
Fix DISM /RestoreHealth error when the Windows component store repair cannot find source files, failing to download from Windows Update or use a local source.
Key Details
- DISM (Deployment Image Servicing and Management) repairs the Windows component store used by SFC
- The RestoreHealth option downloads clean files from Windows Update to replace corrupted components
- When DISM cannot find source files, it fails with error 0x800f081f or source files not found message
- A local Windows ISO or WIM file can be specified as an alternative repair source
- DISM must complete successfully before SFC /scannow can effectively repair system files
Common Causes
- Windows Update servers unreachable due to network issues or proxy configuration
- WSUS (enterprise) configured as the source but does not have the required repair packages
- Local Windows ISO version does not match the installed Windows version and build
- Corrupted Windows Update cache preventing download of repair files
Steps
- 1Try online repair first: DISM /Online /Cleanup-Image /RestoreHealth (requires internet)
- 2If online fails, use Windows ISO: mount ISO then DISM /Online /Cleanup-Image /RestoreHealth /Source:D:\sources\install.wim
- 3Ensure the ISO matches your exact Windows version and build number
- 4Clear DISM cache before retrying: DISM /Online /Cleanup-Image /StartComponentCleanup
- 5For WSUS environments: temporarily set Group Policy to use Windows Update directly for repairs
Tags
dismrestorehealthsourcecomponent-storerepair
More in System
windows-C000021A-status-system-process-terminatedWindows Error 0xC000021A — STATUS SYSTEM PROCESS TERMINATED
Criticalwindows-C0000225-boot-configuration-errorWindows Error 0xC0000225 — Boot Configuration Error
Criticalwindows-C000000F-boot-selection-failedWindows Error 0xC000000F — Boot Selection Failed
Criticalwindows-80004005-unspecified-errorWindows Error 0x80004005 — Unspecified Error
Warningwindows-80070570-file-or-directory-corruptedWindows Error 0x80070570 — File or Directory Corrupted
Errorwindows-system-0xc0000185Windows Error 0xC0000185 — Boot Device Inaccessible
CriticalFrequently Asked Questions
DISM repairs the Windows component store (the source repository). SFC repairs individual system files using the component store. If the component store is corrupted, SFC cannot repair files. Always run DISM first, then SFC.