WindowsTutorial2 min read

How to Fix a Corrupted Windows 11 Installation

Repair a corrupted Windows 11 installation using sfc /scannow, DISM, and an in-place repair install — without losing your files.

Modern laptop on a desk workspace

Signs of a Corrupted Windows Installation

Symptoms include random crashes, apps failing to open, Windows Update errors, broken Settings pages, or error messages referencing missing or corrupt files. Before reinstalling from scratch, try these repair tools — they fix most corruption issues while keeping all your files and apps intact.

Step 1 — Run SFC (System File Checker)

SFC scans all protected Windows system files and replaces corrupted ones with a cached clean copy. Open Command Prompt as Administrator and run:

  • sfc /scannow

The scan takes 10–20 minutes. When it finishes, look for one of three results: no integrity violations found (you're clean), found and repaired (fixed), or found corrupt files but could not fix (proceed to DISM).

Step 2 — Run DISM to Repair the Windows Image

DISM (Deployment Image Servicing and Management) repairs the Windows component store that SFC pulls from. If SFC couldn't fix things, DISM often can. In an elevated Command Prompt, run these three commands in order:

  • DISM /Online /Cleanup-Image /CheckHealth
  • DISM /Online /Cleanup-Image /ScanHealth
  • DISM /Online /Cleanup-Image /RestoreHealth

RestoreHealth downloads replacement files directly from Windows Update, so you'll need an internet connection. After DISM finishes, run sfc /scannow again to let SFC apply the now-repaired image.

Step 3 — Run CHKDSK on Your Drive

Disk errors can mimic system file corruption. In an elevated Command Prompt, run:

  • chkdsk C: /f /r

Type Y to schedule it on the next restart. CHKDSK will scan your drive for bad sectors and file system errors when you reboot.

Step 4 — Perform an In-Place Repair Install

If DISM and SFC can't fix the problem, a repair install (also called an in-place upgrade) reinstalls Windows 11 system files without touching your personal files, apps, or settings. Download the Windows 11 Installation Assistant from microsoft.com/software-download/windows11 and run it. Choose Upgrade this PC now. The process takes 30–60 minutes and is completely reversible.

Step 5 — Use Startup Repair (If Windows Won't Boot)

If Windows won't start, boot from a Windows 11 USB drive, choose Repair your computer → Troubleshoot → Advanced options → Startup Repair. This tool specifically fixes boot-related corruption.

Repair Toolkit Summary

  • sfc /scannow — repair protected system files
  • DISM /RestoreHealth — repair the component store SFC uses
  • chkdsk C: /f /r — fix disk-level errors
  • Repair Install via Installation Assistant — full system file refresh, files intact
  • Startup Repair — for machines that won't boot