How to Scan and Fix Corrupted System Files in Windows 11

System files are the backbone of Windows. They control everything from booting and updates to built-in apps and core features. When these files become corrupted, you may start seeing random crashes, apps failing to open, Windows Update errors, blue screens, or overall system instability.

If your PC isn’t behaving normally, scanning for corrupted system files on Windows 11 is one of the most important troubleshooting steps you can take. The good news is that Windows includes powerful built-in tools that can detect and repair corrupted system files without reinstalling the OS.

In this in-depth guide, we’ll explain what causes system file corruption, how to scan for corrupted files, and how to fix them properly using SFC and DISM, step by step.

What Causes System File Corruption in Windows 11?

System files can become corrupted due to several reasons, including:

  • Interrupted or failed Windows updates
  • Sudden power loss or improper shutdowns
  • Disk errors or bad sectors
  • Malware or unwanted software
  • Faulty drivers or system crashes
  • Storage device issues (HDD or SSD problems)

Even a stable system can develop corruption over time, especially after major feature updates.

Signs of Corrupted System Files

You may need to scan for corruption if you notice:

  • Apps crashing or not opening
  • Windows Update failing repeatedly
  • Blue Screen of Death (BSOD) errors
  • Slow performance or random freezes
  • Built-in tools like Settings or Windows Security not opening
  • Error messages related to missing or damaged files

If any of these sound familiar, it’s time to run system scans.

How to Scan and Fix Corrupted System Files in Windows 11

Follow the methods below in order. Each step builds on the previous one.

1. Run System File Checker (SFC) Scan

System File Checker is the first tool you should use. It scans protected Windows system files and automatically replaces corrupted ones with correct versions.

  1. Press Windows + S and search for Command Prompt.
  2. Right-click Command Prompt and select Run as administrator.
  3. In the Command Prompt window, type: sfc /scannow
  4. Press Enter and wait for the scan to complete (this may take some time).

2. Use DISM to Repair the Windows System Image

If SFC cannot repair all files, the underlying Windows image may be corrupted. This is where DISM comes in.

  1. Open Command Prompt (Admin) again.
  2. Run the following command: DISM /Online /Cleanup-Image /RestoreHealth
  3. Press Enter and wait for the process to finish.

Important notes:

  • This scan can take 10–30 minutes
  • It may appear stuck at certain percentages—do not interrupt it

DISM downloads clean system components from Windows Update and repairs the local image.

3. Run SFC Again After DISM (Very Important)

After DISM completes, you should always run SFC again.

  1. In Command Prompt (Admin), run: sfc /scannow
  2. Let the scan finish.

At this stage, SFC should be able to repair any remaining corrupted system files.

4. Scan for Disk Errors Using CHKDSK

Sometimes corruption is caused by disk-level errors.

  1. Open Command Prompt (Admin).
  2. Run: chkdsk C: /f
  3. If prompted to schedule the scan, type Y and press Enter.
  4. Restart your PC.

CHKDSK scans the disk for errors and fixes file system issues that may corrupt system files.

5. Run the Scans in Safe Mode (If Issues Persist)

If SFC or DISM keeps failing, Safe Mode can help.

  1. Hold Shift and click Restart.
  2. Go to Troubleshoot → Advanced options → Startup Settings.
  3. Boot into Safe Mode.
  4. Run: sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth

Safe Mode prevents third-party software from interfering with repairs.

6. Check the SFC Log for Unrepaired Files (Advanced)

If some files still can’t be repaired:

  1. Open Command Prompt (Admin).
  2. Run: findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log > "%userprofile%\Desktop\SFC_Details.txt"
  3. Open the generated file on your desktop.

This log shows exactly which files are corrupted and whether they were repaired.

7. When a Repair Install Is Needed

If:

  • SFC and DISM both fail
  • Corruption keeps returning
  • Core Windows apps remain broken

Then a repair install (in-place upgrade) is the safest next step. This reinstalls Windows system files without deleting personal data or apps.

Wrapping Up

Corrupted system files in Windows 11 can cause a wide range of problems, but in most cases, they can be detected and repaired using System File Checker (SFC) and DISM—without reinstalling Windows. By running these tools correctly and in the right order, you can restore system stability, fix crashes, and resolve update or app issues safely.

If corruption persists even after all scans, a repair install is the final and most reliable solution. But for most users, the steps above are more than enough to get Windows 11 back into a healthy state.

Posted by Arpita

With a background in Computer Science, she is passionate about sharing practical programming tips and tech know-how. From writing clean code to solving everyday tech problems, she breaks down complex topics into approachable guides that help others learn and grow.