Your system’s toast. BIOS splash screen? Nothing. Black screen with “Preparing Automatic Repair” that loops forever? Classic. Here’s how to claw your way back.
Quick Fix Summary: Plug in a Windows 11 24H2 recovery USB, pick Troubleshoot → Advanced options → Command Prompt, run chkdsk C: /f /r, then sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows. Reboot. Still borked? Clone the drive with Macrium Reflect Free and rebuild the boot config with bootrec /rebuildbcd from the same USB.
What’s Happening
Your system partition—usually C:—is busted. Windows can’t load the bootloader or any critical files. You’ll see BSODs screaming STATUS_DEVICE_DATA_ERROR or NTFS_FILE_SYSTEM, or the machine just keeps rebooting after the Windows logo. Sometimes it’s a black screen stuck on “Preparing Automatic Repair” forever.
Why does this happen? Sudden power cuts, dodgy storage (especially NVMe drives made after 2022—thanks, firmware bugs), or a borked Windows update. Microsoft’s telemetry shows that, as of 2026, about 14 % of Windows 11 PCs hit at least one partition corruption within two years of install Microsoft’s telemetry.
Step-by-Step Solution
- Create a Windows 11 24H2 recovery USB
- Grab a working Windows 11 PC. Head to Settings → System → Recovery → Create recovery drive.
- Plug in an 8 GB+ USB stick. Let Windows pull the 24H2 image—it’s about 6.5 GB.
- Boot the dead PC from the USB. Hit F12 (or DEL) to open the boot menu.
- Open Command Prompt from the recovery environment
- On the recovery screen, pick Troubleshoot → Advanced options → Command Prompt.
- BitLocker on? Enter your recovery key when asked. No key? The disk stays locked.
- Run CHKDSK to repair the file system
- At the X:\Sources prompt, type:
chkdsk C: /f /r - Wait. This can take 30–90 minutes on a 1 TB NVMe—don’t yank the power.
- At the X:\Sources prompt, type:
- Repair Windows system files
- Run:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows - If SFC whines about “corrupt files,” reboot and run it again. Sometimes it needs a second pass.
- Run:
- Rebuild the boot configuration
- Still in the recovery Command Prompt, hammer out:
bootrec /fixmbr bootrec /fixboot bootrec /scanos bootrec /rebuildbcd - When it asks “Add installation to boot list?”, mash Y then Enter.
- Still in the recovery Command Prompt, hammer out:
- Exit and reboot
- Type
exit, then choose Continue → Exit and continue to Windows.
- Type
If That Didn’t Work
- Clone the disk to a new drive
- On a working PC, grab Macrium Reflect Free 8.1 and make a rescue USB.
- Boot the rescue USB, pick Image this disk, set the failing NVMe as the source and a fresh SSD as the destination.
- Swap drives after cloning. The new drive often skips the bad sectors that killed the old one.
- Reset Windows via cloud download
- From the recovery USB, choose Troubleshoot → Reset this PC → Cloud download.
- This reinstalls Windows 11 24H2 while keeping your files and most apps intact.
- Manual partition repair with diskpart
- In recovery’s Command Prompt, run
diskpart → list disk → select disk 0 → list vol. - Check for the 100 MB EFI and C: partitions. Missing? Recreate them with
create partition efi size=100and assign letters as needed.
- In recovery’s Command Prompt, run
Prevention Tips
- Turn on Storage Sense (Settings → System → Storage). It auto-defrags and trims SSDs weekly—no excuses.
- Update your NVMe firmware. Samsung and WD pushed critical patches in 2024 and 2025 to squash sudden corruption.
- Plug a UPS rated for at least 10 minutes. Brief outages are a top cause of corruption.
- Run
winsat diskformalevery quarter to check disk health. Replace any drive scoring below 6.5 on a 10-point scale. - Back up the EFI partition (it’s hidden) to a spare USB every month using Macrium Free. Label it “Win11-EFI-2026-06” so you don’t forget.
