Windows Boot Manager is a critical component of the Windows startup process. It loads the operating system, displays the boot menu when multiple operating systems are installed, and ensures that Windows starts correctly. If the Windows Boot Manager becomes corrupted or misconfigured, your computer may fail to boot, display error messages such as “Bootmgr is missing” or “No Bootable Device”, or become stuck in an automatic repair loop.
Boot Manager problems can occur for several reasons, including interrupted Windows updates, corrupted system files, damaged boot configuration data (BCD), failed disk operations, malware infections, or accidental changes to the system partition. Fortunately, Windows 11 includes several built-in recovery tools that can repair Boot Manager without requiring a complete reinstallation of the operating system.
In this guide, you’ll learn the most effective methods to fix Windows Boot Manager in Windows 11. We’ll also explain common causes of boot problems, how to rebuild the Boot Configuration Data (BCD), repair the Master Boot Record (MBR) where applicable, and restore normal startup functionality.
What Is Windows Boot Manager?
Windows Boot Manager (BOOTMGR) is a system component responsible for starting Windows during the boot process. It reads the Boot Configuration Data (BCD) store, identifies available operating systems, and loads the selected version of Windows.
On modern UEFI-based systems, Windows Boot Manager works alongside the EFI System Partition (ESP), while older BIOS-based systems may rely on the Master Boot Record (MBR).
If Boot Manager becomes damaged or cannot locate the required boot files, Windows will fail to start.
Common Signs of a Corrupted Boot Manager
You may need to repair Windows Boot Manager if you encounter any of the following issues:
- “Bootmgr is missing.”
- “No Bootable Device.”
- “Operating System Not Found.”
- Automatic Repair loop.
- Black screen during startup.
- Windows fails to boot after an update.
- Boot Configuration Data (BCD) errors.
- Computer repeatedly restarts before reaching the login screen.
These symptoms often indicate that the boot files or boot configuration have been damaged.
Before You Begin
Before attempting repairs:
- Disconnect unnecessary USB drives and external storage devices.
- Ensure your laptop or desktop has sufficient battery power or is connected to a power source.
- If possible, create a Windows 11 installation USB on another computer.
- Back up important data if the drive is still accessible.
Most of the following methods require access to the Windows Recovery Environment (WinRE).
Method 1: Run Startup Repair
Startup Repair is Microsoft’s automatic tool for fixing common boot problems.
Start your PC using the Windows 11 installation media or enter the Windows Recovery Environment.
Select Repair your computer.
Choose Troubleshoot.
Open Advanced options.
Select Startup Repair.
Choose your Windows installation.
Windows scans for boot-related issues and automatically attempts to repair them.
Restart your computer after the process finishes.
This should always be your first troubleshooting step.
Method 2: Rebuild the Boot Configuration Data (BCD)
If the BCD store is corrupted, rebuilding it often restores normal boot functionality.
Open Command Prompt from Advanced options.
Run the following commands one at a time:
bootrec /scanos
bootrec /rebuildbcd
If Windows detects your installation, type:
Y
and press Enter to add it to the boot list.
Restart your PC after the commands complete.
Method 3: Repair the Boot Record
If the boot record is damaged, Windows provides commands to repair it.
Open Command Prompt in WinRE.
Run:
bootrec /fixmbr
Then run:
bootrec /fixboot
If both commands complete successfully, restart the computer.
These commands are particularly useful on BIOS/MBR systems, though some may also help resolve issues on UEFI systems.
Method 4: Repair System Files Using SFC
Corrupted system files can interfere with the boot process.
Open Command Prompt from the recovery environment.
Run:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
Replace the drive letter if your Windows installation is located on a different partition.
Allow the scan to complete and repair any detected corruption.
Restart your computer afterward.
Method 5: Repair the Windows Image Using DISM
If system image corruption is preventing Windows from booting properly, use DISM.
From Command Prompt, run:
DISM /Image:C:\ /Cleanup-Image /RestoreHealth
Wait for the repair process to finish.
Restart your computer.
DISM repairs the Windows image, which can resolve deeper operating system corruption.
Method 6: Check the Disk for Errors
Hard drive or SSD file system errors may prevent Boot Manager from functioning correctly.
Open Command Prompt in WinRE.
Run:
chkdsk C: /f /r
The scan may take some time, especially on large drives.
If errors are found, Windows attempts to repair them automatically.
Restart your PC after the scan.
Method 7: Verify the Correct Boot Device in BIOS/UEFI
Incorrect boot order settings can cause Windows Boot Manager errors.
Restart your computer and enter the BIOS or UEFI firmware settings.
Locate the Boot menu.
Ensure Windows Boot Manager is listed as the first boot device.
Save the changes.
Restart the computer.
If another drive or USB device is listed first, Windows may not boot correctly.
Method 8: Restore the EFI Boot Files
On UEFI systems, rebuilding the EFI boot files can resolve startup problems.
Open Command Prompt in the recovery environment.
Assign a drive letter to the EFI System Partition if necessary, then run:
bcdboot C:\Windows /s S: /f UEFI
Replace S: with the correct drive letter assigned to the EFI partition.
The command copies fresh boot files and recreates the Windows Boot Manager.
Restart your computer after completion.
Method 9: Use System Restore
If Boot Manager problems began after installing software, drivers, or Windows updates, restoring the system to an earlier point may fix the issue.
Open Advanced options.
Choose System Restore.
Select a restore point created before the problem occurred.
Follow the on-screen instructions.
Windows restores system settings without affecting your personal files.
Method 10: Reset or Reinstall Windows 11
If Boot Manager remains damaged despite attempting all previous methods, resetting Windows may be necessary.
From the recovery environment, choose:
Troubleshoot > Reset this PC
Select Keep my files if you want to preserve personal data.
Alternatively, perform a clean installation using Windows 11 installation media.
A clean installation should be considered only after other repair methods have failed.
Common Causes of Boot Manager Problems
Several issues can damage Windows Boot Manager, including:
- Interrupted Windows updates.
- Corrupted Boot Configuration Data (BCD).
- Failing hard drives or SSDs.
- Power failures during startup.
- Malware infections.
- Accidental partition changes.
- File system corruption.
- Improper shutdowns.
Understanding the cause can help prevent the problem from recurring.
Tips to Prevent Future Boot Problems
You can reduce the risk of Boot Manager issues by following these best practices:
- Install Windows updates regularly.
- Shut down Windows properly.
- Avoid interrupting updates.
- Keep reliable backups of important files.
- Monitor SSD or HDD health.
- Scan for malware periodically.
- Create a recovery drive.
- Avoid modifying system partitions unless necessary.
These habits help maintain a stable and bootable Windows installation.
Conclusion
Windows Boot Manager plays a vital role in starting Windows 11, and problems with it can prevent your computer from booting entirely. Fortunately, Windows includes several built-in recovery tools that can repair common boot issues without requiring a complete reinstallation. Whether the problem is caused by corrupted Boot Configuration Data, damaged system files, disk errors, or incorrect boot settings, methods such as Startup Repair, rebuilding the BCD, repairing the boot record, running SFC and DISM, checking the disk, and restoring EFI boot files can often restore normal operation. If all repair attempts fail, resetting or reinstalling Windows remains a reliable last resort. By maintaining regular backups and keeping your system updated, you can also reduce the likelihood of encountering Boot Manager problems in the future.
Frequently Asked Questions
What is Windows Boot Manager?
Windows Boot Manager is the component that starts Windows by reading the Boot Configuration Data (BCD) and loading the operating system during startup.
What causes Windows Boot Manager errors?
Common causes include corrupted boot files, damaged BCD entries, failed Windows updates, disk errors, malware, incorrect BIOS/UEFI settings, and hardware failures.
Can Startup Repair fix Boot Manager problems?
Yes. Startup Repair is designed to automatically detect and repair many common boot-related issues, making it the first tool you should try.
Will rebuilding the BCD delete my files?
No. Rebuilding the Boot Configuration Data only repairs the boot configuration and does not delete your personal files or installed applications.


