Fix Corrupted System Files Using SFC /scannow

Luckyy Vendetta

Administrator
Staff
Luckyy Rep
0
0
0
Rep
0
Luckyy Vouches
1
0
0
Vouches
1
Posts
186
Likes
28
4 YEARS
4 YEARS OF SERVICE
LEVEL 4 90 XP

How to Use sfc /scannow to Repair Windows​


The System File Checker (SFC) is a built-in Windows tool that scans for and restores corrupted system files.

When to Use It​

  • Random crashes or freezes
  • System file corruption
  • Missing Windows features
  • Programs not launching correctly

1. Open Command Prompt as Administrator​

  1. Click Start and type cmd
  2. Right-click Command Prompt
  3. Click Run as administrator

2. Run the SFC Scan​

In the Command Prompt window, type:
Code:
sfc /scannow
Then press Enter.

3. Wait for the Scan to Complete​

This may take 10–20 minutes. You'll see a progress message.

4. Check the Result​

You may see one of the following results:

MessageMeaning
Windows Resource Protection did not find any integrity violations.No issues detected.
Windows Resource Protection found corrupt files and successfully repaired them.Some issues were fixed.
Windows Resource Protection found corrupt files but was unable to fix some of them.Some files could not be fixed automatically.

If SFC Can't Fix Everything​

You can run the DISM tool to fix deeper issues:
Code:
DISM /Online /Cleanup-Image /RestoreHealth
Then reboot and run sfc /scannow again.

Optional: View Detailed Log​

To create a summary log file on your desktop:
Code:
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log > "%userprofile%\Desktop\sfc_log.txt"
Then open the sfc_log.txt file from your desktop.


 
Last edited:

110

512

618

15

Top