WWolfe0001
New Member
- Joined
- Mar 4, 2024
- Messages
- 9
Windows + R
to open the Run dialog.devmgmt.msc
and hit Enter. This should directly open Device Manager.Windows + X
and select Windows Terminal (Admin) or Command Prompt (Admin).devmgmt.msc
and press Enter.sfc /scannow
and hit Enter. Wait for the scanning process to complete and repair any issues it finds. DISM /Online /Cleanup-Image /RestoreHealth
Nope, its not the same thing and both commands should be run. In fact, I think DISM /Online /Cleanup-Image /RestoreHealth && sfc /scannow should be run on the same line!3 and 4 from the bot do basically the same thing. I would run one of those commands. If corrupt files are found and repaired, reboot and run the command again until it comes back clean
DISM /Online /Cleanup-Image /RestoreHealth
is designed to repair the Windows image. It checks and fixes issues that may prevent Windows components from working properly. This command is really useful for resolving corruption in the system files.sfc /scannow
command then scans the integrity of Windows system files and replaces any corrupted files it finds. It's typically run after DISM to ensure that all system files are in their correct state.DISM /Online /Cleanup-Image /RestoreHealth && sfc /scannow