An IT support technician receives a ticket reporting that a graphic designer's Windows workstation experiences frequent application crashes accompanied by missing DLL error messages. The technician runs the System File Checker utility (`sfc /scannow`), but the command completes with an error stating that corrupt files were found but could not be repaired because the local payload store is damaged. The workstation has an active connection to the Internet. Which command should the technician run next to repair the component store?
- dism /online /cleanup-image /restorehealthAnswer
- Bdism /online /cleanup-image /checkhealth
- Csfc /r
- Dchkdsk /f
Answer
dism /online /cleanup-image /restorehealth
Executing `dism /online /cleanup-image /restorehealth` repairs the corrupted Windows Component Store (WinSxS payload repository) by fetching known-good replacement files from Windows Update. Once DISM restores the health of the store, running `sfc /scannow` will successfully replace damaged operating system files.
Step-by-Step Solution
Key Concept
Repairing the Windows Component Store with DISM before System File Checker
Estimated Time:1m 30s