A technician is troubleshooting a Windows workstation that displays frequent system error dialogs after an unclean shutdown. The technician ran the System File Checker (`sfc /scannow`), but the utility reported that it found corrupt files and was unable to fix some of them because the local component store itself is damaged. In what sequence should the technician execute the following procedures to properly repair the component store image, fix the corrupted system files, and complete the repair process?
- 1Open an elevated Command Prompt with administrative privileges.
- 2Run `dism /online /cleanup-image /restorehealth` to repair the Windows Component Store image.
- 3Run `sfc /scannow` to scan protected system files and replace corrupted files using the repaired component store.
- 4Reboot the workstation to complete pending file replacements and verify system stability.
Cevap
The correct troubleshooting sequence is: First, open an elevated Command Prompt. Next, execute `dism /online /cleanup-image /restorehealth` to repair the component store. Then, execute `sfc /scannow` to fix corrupt system files. Finally, restart the system to complete file replacement operations.
The correct sequence begins with opening an elevated Command Prompt to gain administrative access. The Deployment Image Servicing and Management tool (`dism /online /cleanup-image /restorehealth`) must be run next to repair the corrupted Windows component store image. Once the component store is healthy, running System File Checker (`sfc /scannow`) allows the utility to successfully replace damaged system files with clean copies from the store. Finally, restarting the computer applies any pending file operations that require a reboot.
Adım Adım Çözüm
Anahtar Kavram
DISM vs. SFC Repair Dependency Sequence