Using SFC and DISM is often done in haste and incorrectly. If you need to fix a corrupted install, then a special DISM command MUST BE issued.
Do you know how to restore corrupt windows features using DISM and source the files from a windows ISO?
— Chris Titus Tech (@christitustech) November 2, 2022
DISM /Online /Cleanup-Image /CheckHealthDISM /Online /Cleanup-Image /CheckHealth
Note: This will check it’s health and cleanup basic corruption errors.
Use this command when the basic one fails. Follow these steps:
DISM /Online /Cleanup-Image /RestoreHealth /Source:E:\Sources\install.wim
Note: install.wim
is known as ESD in some downloads install.esd
Did it run correctly? Was the corruption repaired?
Check the log file at %windir%\Logs\DISM\dism.log
System file checker is WORTHLESS! In the best scenario it might tell you about some corruption, but I have never seen it actually repair anything.
Yet every damn guide on the internet recommends you run it. Save your time, and use DISM instead.