Deployment Image Servicing and Management (DISM) is a powerful Windows repair tool used to fix deeper system corruption that the System File Checker (SFC) cannot repair. DISM repairs the Windows system image, component store, and servicing layers that Windows relies on for updates and stability.
What DISM Does
DISM focuses on repairing the underlying Windows image. If the image is damaged, SFC cannot repair system files because it depends on that image as its source.
DISM is commonly used to fix:
- Windows Update failures
- Component store corruption
- Servicing stack issues
- Deep system corruption
- SFC errors that cannot be repaired
When to Use DISM
Run DISM when you experience:
- SFC reports unrepairable corruption
- Windows Updates fail repeatedly
- System instability after updates
- Frequent crashes or servicing errors
- Windows features not installing or removing properly
DISM is the “deep repair” tool and is often used before or after SFC.
How to Run DISM
Open Command Prompt as Administrator and run the following commands in order:
1. Check for Corruption
dism /online /cleanup-image /checkhealth
This performs a quick check to see if corruption exists.
2. Scan for Corruption
dism /online /cleanup-image /scanhealth
This performs a deeper scan and may take several minutes.
3. Repair the Windows Image
dism /online /cleanup-image /restorehealth
This repairs the Windows image using Windows Update or a local source if configured.
After Running DISM
Once DISM completes successfully, run SFC again to ensure all system files are repaired:
sfc /scannow
This final pass ensures both the image and the system files are healthy.
Common DISM Errors
DISM may return errors such as:
- 0x800f081f – Source files not found
- 0x800f0954 – Cannot access Windows Update
- 0x800f0906 – Corrupted or missing repair source
These errors usually indicate missing or damaged source files or update components.
Log File Location
DISM writes detailed logs to:
C:\Windows\Logs\DISM\dism.log
This log helps diagnose repair failures or missing sources.
Summary
DISM is a critical Windows repair tool that fixes deep system corruption, especially when SFC cannot repair files. Running DISM followed by SFC is one of the most effective repair sequences for restoring Windows stability.