Nothing kills your gaming momentum faster than a sudden freeze, a crash to the desktop, or the dreaded Blue Screen of Death. While it’s easy to blame an overheating graphics card or bad RAM, the culprit is often much simpler: corrupted Windows system files.

Over time, unexpected shutdowns, buggy software updates, or failing drive sectors can corrupt the core files Windows needs to run heavy applications. When a game demands resources that rely on these broken files, the system panics and crashes.


The first line of defense: SFC /scannow 

Before you reinstall Windows or buy new hardware, you need to use the System File Checker (SFC). This is a built-in diagnostic tool that checks the integrity of all protected system files and replaces incorrect or corrupted versions with clean copies.

How to run it:

  1. Press the Windows key, type CMD into the search bar.
  2. Right-click on Command Prompt and select Run as administrator. (This is mandatory—the scan will not run without admin privileges).
  3. In the terminal window, type exactly: sfc /scannow
  4. Press Enter.

The scan usually takes 5 to 15 minutes. Once it hits 100%, it will tell you if it found corrupted files and successfully repaired them. Restart your PC, and launch your game.


🔥 What if it didn’t work? 

Sometimes, the SFC scan will tell you it found corrupted files but could not fix them. This means the local backup image that Windows uses to pull clean files is also corrupted.

To fix the backup image, you need to use the Deployment Image Servicing and Management (DISM) tool.

  1. Open the Command Prompt as an administrator again.
  2. Type exactly: DISM /Online /Cleanup-Image /RestoreHealth
  3. Hit Enter.

This command tells Windows to connect to Windows Update online, download fresh, uncorrupted system files, and repair the local image. Once the DISM scan finishes, run the sfc /scannow command one more time. This time, it will successfully pull the clean files and permanently repair your system.

Leave a Reply