| Result | Meaning | What to do | |--------|---------|-------------| | | All system files are healthy. | Your issue is elsewhere (drivers, apps, hardware). | | Found and repaired corrupt files | Success! Check CBS.log for details. | Reboot and test your original issue. | | Found but unable to fix | The Component Store is also corrupt. | Run DISM /Online /Cleanup-Image /RestoreHealth first , then rerun SFC. | | Found, fixed, but need reboot | Files were in use. | Restart Windows to apply repairs. | The #1 mistake people make (and how to fix it) Mistake: Running sfc /scannow without checking the Component Store first.
If your Windows 11 PC has been acting up—random crashes, right-click lag, or the Settings app refusing to open—you’ve probably seen the advice: “Run sfc /scannow.” sfc /scannow windows 11
Since that file is massive, filter it efficiently: | Result | Meaning | What to do
DISM /Online /Cleanup-Image /RestoreHealth && sfc /scannow The && means the second command runs only if the first succeeds. sfc /scannow is not a placebo. It has saved countless Windows 11 installs from reinstallation. But treat it as a two-step process with DISM, and always check your storage health if corruption keeps returning. Check CBS
Let’s demystify the System File Checker (SFC) and get your Windows 11 installation healthy again. SFC (System File Checker) is a built-in Windows utility that scans for corrupted, modified, or missing system files. When you run sfc /scannow , it compares your current system files against a cached copy stored in a protected folder called the Windows Component Store ( C:\Windows\WinSxS ).
If SFC says it can’t fix files, that means its source of “good files” (WinSxS) is broken. You need to repair the source before running SFC again.
But what does that command actually do ? And why does it sometimes finish saying, “Windows Resource Protection found corrupt files but was unable to fix some of them” ?