There is nothing more terrifying for a PC user than turning on their computer and seeing the message “Preparing Automatic Repair,” followed by a black screen, and then the same message again. You are stuck in the infamous Automatic Repair Loop.
Your computer is trying to fix itself but failing miserably. The immediate fear is, “Have I lost all my files?”
The short answer is: Probably not.
In 90% of cases, this is a software glitch caused by a corrupted system file, a bad driver update, or even a sudden power outage. Before you panic and reinstall Windows (which wipes your data), try these 5 proven methods to break the loop and get back into Windows 11 safely.
Method 1: The “Hard Reboot” (Simplest Fix)
Sometimes, the simplest solution works best. Your computer’s RAM might be holding onto some corrupt temporary data.
- Force Shutdown: Press and hold the power button on your PC or laptop for a full 10 seconds until it turns off completely.
- Unplug Everything: Remove the power cord, battery (if removable), and all USB devices (mouse, keyboard, flash drives).
- Hold Power Button: With everything unplugged, hold the power button for 30 seconds to drain any residual electricity.
- Reconnect and Start: Plug the power cord back in (keep USBs unplugged for now) and turn it on.
If it boots up, a USB device was likely the culprit. If not, move to Method 2.
Method 2: Boot into Safe Mode
Safe Mode loads Windows with only the essential drivers. If you can get in, you can likely fix the problem.
- When you see the “Automatic Repair” blue screen, click [Advanced options].
- Go to [Troubleshoot] > [Advanced options] > [Startup Settings].
- Click [Restart].
- When the PC restarts, you will see a list of options. Press F4 or 4 to enable Safe Mode.
If your PC boots into Safe Mode successfully, the issue is likely a recently installed driver or software. Uninstall anything you added recently and restart normally.
Method 3: Fix Corrupted Files with Command Prompt (CMD)
This is the most effective method for technical glitches. We will use the Command Prompt to repair the file system.
- On the “Automatic Repair” blue screen, go to [Advanced options] > [Troubleshoot] > [Advanced options] > [Command Prompt].
- In the black window, type the following command and press Enter:
chkdsk c: /f /r(Note: If your Windows is installed on a different drive letter, replace ‘c:’ with that letter.) - Wait for the scan to finish. It will find and fix bad sectors on your hard drive.
- Next, type this command to repair system files:
sfc /scannow
Once both scans are done, type exit and restart your computer.
Method 4: Rebuild the Boot Configuration Data (BCD)
If the file that tells Windows how to start is corrupted, no amount of restarting will help. We need to rebuild it manually.
- Open Command Prompt again (as shown in Method 3).
- Type these commands one by one, pressing Enter after each:
Plaintext
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
If you see a message asking to “Add installation to boot list,” type Y and press Enter. After typing all commands, type exit and restart.
Method 5: Disable Automatic Repair (The Last Resort)
Sometimes, the “Automatic Repair” tool itself is the problem. It thinks there is an error when there isn’t one, creating a loop. We can disable it to force Windows to boot.
- Open Command Prompt again.
- Type the following command carefully:
bcdedit /set {default} recoveryenabled No - Press Enter. If it says “The operation completed successfully,” type
exitand restart.
Warning: This stops the loop, but if there is a genuine critical error, Windows might just crash or show a different error. However, it often allows you to bypass the loop and access your desktop to backup your data.
Conclusion: Don’t Give Up on Your Data
The Automatic Repair loop is frustrating, but it is rarely fatal for your hardware. By systematically going through these steps—starting with a hard reboot and moving to CMD repairs—you have a very high chance of recovering your system without spending a dime on repair shops.
If you managed to fix it, create a System Restore point immediately so you never have to go through this panic again!
