Repair Windows 10/11 Boot Problems with Startup Repair, Safe Mode, and bootrec
Difficulty: Intermediate | Time Required: 20 minutesBoot problems in Windows 10 and Windows 11 can be frustrating, especially when your PC gets stuck in a restart loop, shows a black screen, or fails to load Windows entirely. The good news is that Microsoft includes several built-in recovery tools that can often get your system working again without reinstalling Windows.
In this guide, you’ll learn how to repair common boot issues using Startup Repair, Safe Mode, and the bootrec command-line tools. These steps are useful when Windows won’t start normally, after a bad update or driver install, or when the boot records have become damaged.
Prerequisites
Before you begin, make sure you have:- Access to the affected Windows 10 or Windows 11 PC
- An administrator account password if prompted
- A charged laptop battery or AC power connected
- Optional but recommended: a Windows 10/11 installation USB or recovery drive
Note: These steps apply to both Windows 10 and Windows 11. Menu names are very similar, though the interface may look slightly different.
Step 1: Enter the Windows Recovery Environment (WinRE)
To repair boot problems, you’ll first need to access Windows Recovery Environment, also called WinRE.If the PC still partially boots
- Turn on the PC.
- As soon as Windows starts loading, hold the power button to force shutdown.
- Repeat this two to three times.
- Windows should automatically load Preparing Automatic Repair and then show Advanced options.
If the PC does not reach recovery automatically
- Insert a Windows installation USB or recovery drive.
- Boot from the USB.
- On the Windows Setup screen, select your language and keyboard if asked.
- Click Repair your computer in the lower-left corner.
- Go to Troubleshoot > Advanced options.
Tip: If your system always skips the USB and tries to boot normally, you may need to open the BIOS/UEFI boot menu. Common keys include F12, Esc, F9, or Del, depending on your PC manufacturer.
Step 2: Run Startup Repair
Startup Repair is the easiest first step and should always be tried before more advanced fixes.- In WinRE, select Troubleshoot.
- Click Advanced options.
- Select Startup Repair.
- Choose your Windows installation if prompted.
- Enter your account password if required.
- Let Windows scan and attempt repairs automatically.
What Startup Repair can fix
- Missing or damaged boot files
- Incorrect startup configuration
- Some problems caused by failed updates or sudden shutdowns
What to do after it finishes
- If Windows starts normally, test it and restart once more to confirm the issue is fixed.
- If Startup Repair says it could not repair your PC, continue to the next method.
Warning: Startup Repair does not fix every issue. If the disk has severe corruption or hardware problems, additional troubleshooting may be needed.
Step 3: Try Safe Mode
If Windows can boot only partially, Safe Mode can help you remove the driver, update, or software causing the startup problem.- In WinRE, go to Troubleshoot > Advanced options.
- Select Startup Settings.
- Click Restart.
- After restart, choose one of the following:
- Press 4 or F4 for Enable Safe Mode
- Press 5 or F5 for Safe Mode with Networking
- Press 6 or F6 for Safe Mode with Command Prompt
Once in Safe Mode, check the following:
Uninstall a recent update
- Open Settings.
- Go to Windows Update > Update history.
- Click Uninstall updates.
- Remove the most recent quality update or driver update if the issue started after patching.
Remove a newly installed driver or app
- Right-click Start and choose Device Manager.
- Expand the category for the suspected device.
- Right-click the device and select Properties.
- On the Driver tab, choose Roll Back Driver if available.
- Settings > Apps > Installed apps
or - Control Panel > Programs and Features
Run System File Checker
- Open Command Prompt as administrator.
- Run:
sfc /scannow - Wait for the scan to complete and repair any damaged system files.
Tip: Safe Mode is especially helpful if the problem began after installing antivirus software, GPU drivers, storage drivers, or Windows updates.
Step 4: Use bootrec to Repair Boot Records
If Startup Repair and Safe Mode do not solve the issue, you can use bootrec from Command Prompt in WinRE.- Boot into WinRE.
- Select Troubleshoot > Advanced options > Command Prompt.
- If prompted, choose your administrator account and enter the password.
Code:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
What each command does
- bootrec /fixmbr
Rewrites the Master Boot Record without affecting partitions. - bootrec /fixboot
Writes a new boot sector. - bootrec /scanos
Scans for Windows installations not currently listed in the boot menu. - bootrec /rebuildbcd
Rebuilds the Boot Configuration Data store.
If Windows installation is found
When prompted to add the installation to the boot list, type:YThen press Enter.
Note: On many modern Windows 10/11 systems using UEFI and GPT,bootrec /fixmbris usually harmless but may not be the complete fix if the EFI boot files are damaged.
Step 5: If “Access is denied” appears with bootrec /fixboot
A common issue in Windows 10 and Windows 11 is thatbootrec /fixboot may return:Access is denied.If that happens, try these additional commands in Command Prompt:
Code:
diskpart
list vol
Then run:
Code:
select vol X
assign letter=Z
exit
Now rebuild the EFI boot files:
bcdboot C:\Windows /s Z: /f UEFIIf successful, restart the PC and test booting again.
Warning: Be careful when usingdiskpart. Selecting the wrong volume can lead to confusion or accidental changes. Read the volume list carefully before proceeding.
Step 6: Restart and Test
- Close Command Prompt.
- Select Continue or manually restart the PC.
- Remove the USB installer if you used one.
- Check whether Windows now loads correctly.
- System Restore if restore points exist
- Uninstall Updates from Advanced options
- CHKDSK to check for disk errors:
chkdsk C: /f /r
Tip: If you hear clicking from the drive, see SMART warnings, or the PC freezes during repair attempts, a hardware problem may be involved rather than only boot corruption.
Tips and Troubleshooting Notes
1. Know whether your system uses UEFI or Legacy BIOS
Most Windows 11 systems and many Windows 10 systems use UEFI. Older devices may use Legacy BIOS/MBR. This matters because modern UEFI systems rely on the EFI System Partition rather than older boot methods.2. BitLocker may prompt for a recovery key
If the system drive is encrypted, WinRE may ask for your BitLocker recovery key before allowing repairs.3. Startup Repair may need more than one pass
It’s not unusual to run Startup Repair twice if the first run fixes only part of the issue.4. Use Safe Mode for software-related failures
If the PC started failing after:- a graphics driver update
- a new antivirus suite
- a Windows cumulative update
- overclocking or tuning software
5. Keep a recovery USB ready
A recovery or installation USB can save a lot of time when Windows won’t enter WinRE on its own.Conclusion
Boot failures in Windows 10 and Windows 11 do not always mean you need to reinstall the operating system. In many cases, you can recover the system by entering WinRE and using Startup Repair, Safe Mode, or bootrec to restore damaged startup components. Starting with the simplest repair option and working toward the command-line tools gives you the best chance of fixing the problem quickly and safely.Key Takeaways:
- Startup Repair is the best first step for most Windows boot failures
- Safe Mode helps remove bad drivers, updates, and software causing startup issues
bootreccan repair damaged boot records and rebuild BCD data- UEFI-based systems may require
bcdbootifbootrec /fixbootreturns access denied - A Windows recovery USB makes troubleshooting much easier
This tutorial was generated to help WindowsForum.com users get the most out of their Windows experience.