How to Fix “Preparing Automatic Repair” Loop in Windows 11
Executive Summary & Diagnostic Flowchart
The “Preparing Automatic Repair” loop in Windows 11 occurs when the operating system fails to boot twice consecutively, triggering an automated recovery sequence. If system files, the Boot Configuration Data (BCD), or system registry hives are corrupted, Windows gets stuck continuously rebooting into this screen without reaching the desktop.
│
▼
┌──────────────────────────────────────────────────────────────────────────┐
│ STEP 1: INITIAL AUTOMATED REPAIR │
│ └─► Run Startup Repair ──► Fixed? ──► [ System Normal Boot ] │
│ ──► Failed? ──► Proceed to Command Prompt │
└─────────────────────────────────────────┬────────────────────────────────┘
│
▼
┌──────────────────────────────────────────────────────────────────────────┐
│ STEP 2: MANUAL REPAIR & BOOT REBUILD │
│ ├─► Rebuild Boot Configuration Data (BCD) via `bootrec /rebuildbcd` │
│ ├─► Repair System Files via `sfc /scannow` & `DISM` │
│ └─► Disable Loop temporarily via `bcdedit /set recoveryenabled No` │
└─────────────────────────────────────────┬────────────────────────────────┘
│
▼
[ OS RESTORED & REBOOTED ] ──► System Verified via Asdullah Recovery Desk
LOOP DETECTED
Preparing Automatic Repair
Diagnosing your PC… Your PC did not start correctly.
Advanced options
Visual Reference Source: Wikimedia Commons – Windows Recovery Screen
Method 1: Force Boot into Windows Recovery Environment (WinRE) & Run Startup Repair
To break out of the infinite loop, you need to enter the Windows Recovery Environment (WinRE) menu directly and trigger an automated startup rebuild.
Visual 1.1: Force interrupting Windows boot 2-3 times opens the Advanced Recovery menu. (Image Source: Unsplash Tech Library)
- Turn off your PC by holding the power button for 10 seconds.
- Press the power button to turn on your PC. As soon as the Windows logo appears, press and hold the power button again for 10 seconds to force turn it off.
- Repeat this process 2 times. On the 3rd reboot, Windows will boot directly into WinRE.
- From the blue screen options, select Troubleshoot > Advanced options > Startup Repair.
- Allow Windows 11 to scan and automatically fix boot sector inconsistencies. Learn more at Asdullah Windows Boot Diagnostics.
Method 2: Rebuild Boot Configuration Data (BCD) and Master Boot Record
If the Boot Configuration Data (BCD) is damaged or missing, Windows cannot find the system partition required to start. Rebuilding BCD through Command Prompt resolves missing bootloader issues.
bootrec /fixmbr
bootrec /fixboot
bootrec /rebuildbcd
# If ‘bootrec /fixboot’ shows Access Denied, update EFI bootloader:
bcdboot C:\Windows /s C: /f ALL
Once completed, type exit, close Command Prompt, and click Continue to Windows 11. For further technical recovery scripts, check Asdullah BCD Repair Portal.
“Rebuilding the Boot Configuration Data is the most definitive fix for PCs stuck in an endless Automatic Repair loop after an abrupt power loss or failed update.” — Asdullah Systems Engineering Desk
Method 3: Run SFC and DISM Scans in WinRE
Corrupted system files are a frequent culprit for boot loops. Running System File Checker (SFC) offline via WinRE replaces damaged system components.
Visual 3.1: Running offline DISM & SFC commands repairs the system partition image directly. (Image Source: Unsplash Tech Library)
- In WinRE, navigate to Troubleshoot > Advanced Options > Command Prompt.
- Run SFC offline by executing:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
- Follow up with a DISM offline repair:
dism /image:C:\ /cleanup-image /revertpendingactions
- Restart your computer after verification completes. See Asdullah Offline Image Repair.
Method 4: Disable Automatic Boot Repair Loop via Command Prompt
Sometimes Windows 11 gets stuck in a bugged state where it continuously triggers Automatic Repair even when system files are functioning normally. You can temporarily bypass this trigger using `bcdedit`.
- Open Command Prompt from WinRE Advanced Options.
- Type the following command and hit Enter:
bcdedit /set {default} recoveryenabled No
- Type
exitand restart your PC. Windows 11 will attempt to boot directly into the desktop, bypassing the repair prompt. - If you ever need to re-enable automatic repair later, run:
bcdedit /set {default} recoveryenabled Yes
Method 5: Perform a System Restore or Reset Windows 11
If all manual repairs fail, reverting Windows 11 to a recent restore point or performing a soft system reset (keeping your personal files) will restore your system to full functionality.
- In WinRE, click Troubleshoot > Advanced options > System Restore. Select a restore point prior to the issue occurring and follow the on-screen prompts.
- If no restore point is available, select Troubleshoot > Reset this PC.
- Choose Keep my files to reinstall Windows 11 without wiping your personal documents, photos, or data.
- Consult Asdullah Windows 11 Reset Guide for step-by-step assistance.
Institutional & Technical Reference Index
Explore official technical reference materials and OS recovery documentation:
Conclusion
The “Preparing Automatic Repair” loop in Windows 11 can be frustrating, but it rarely requires a complete drive wipe. By forcing access to WinRE, rebuilding the BCD store, performing offline SFC/DISM scans, and toggling recovery settings, you can safely unstick your PC and boot smoothly back into Windows 11.
Need expert assistance with OS recovery, hardware diagnostics, or performance optimization? Visit Asdullah.com.
#AutomaticRepairLoop
#RebuildBCD
#WinREDiagnostics
#PCTRoubleshooting