A system administrator suspects that core Windows operating system files have become corrupted on a workstation. To properly repair the system file repository before replacing damaged operating system binaries, in what order should the technician execute the diagnostic and remediation steps?
- 1Open an elevated Command Prompt window with administrative privileges.
- 2Run dism /online /cleanup-image /restorehealth to repair the Windows component store image.
- 3Run sfc /scannow to inspect and replace damaged protected system files.
- 4Restart the workstation to apply pending changes for locked files.
Answer
The correct sequence starts by opening an elevated Command Prompt, followed by executing DISM to fix the component store, running SFC to repair system files using the healthy store, and finally rebooting the workstation.
The proper troubleshooting order requires administrative elevation first, followed by servicing the Windows component store using DISM. Once the store is verified healthy, SFC can successfully repair protected system files, and a system reboot finalizes the process.
Step-by-Step Solution
Key Concept
Windows Command-Line Repair Workflow (DISM before SFC)