The Boot Manager on Windows operating systems is one of the most important components of the start up process and if something goes wrong with it, your system won't be usable. Typically it's a fairly stable part of the entire ecosystem but lately Microsoft insists on AI coding has seen an uptick in problems caused by bad updates, including issues with the Boot Manager. So follow along as this guide shows you how to fix the Boot Manager not showing up in the BIOS on Windows 11.
Takeaways:
- Learn how to fix the boot manager missing from BIOS on Windows 11.
- What causes the Boot Manager to go missing on Windows 11?
Table of Contents
Checks Before Starting
Before you start anything else in this guide there are a few things you need to check first. If you are on a laptop you won't be able to do some of them and that is ok so feel free to skip them.
- Remove USB drives, external disks, and memory cards. Systems sometimes prioritize removable media over internal drives. The less stuff you have to complicate things the better. Once you have done that make sure that:
- The internal drive appears in BIOS
- SATA or NVMe connections are secure
If the disk is not visible in BIOS:
- Reseat cables or SSD
- Load BIOS default settings
- Update firmware
If the disk is still missing, check to see that it is working on another device. It might be broken.
How to Fix Windows Boot Manager Not Showing in BIOS on Windows 11
Windows 11 requires UEFI. So if your system is set to Legacy or CSM you will need to change things. If you've already had Windows 11 install it should already be set. This is mostly for people updating from Windows 10. However it's worth checking anyway.
- Enter BIOS setup
- find Boot Mode or Boot List Option
- Set it to UEFI
- Disable CSM if present
Note: Switching modes can break booting if the disk was installed under Legacy.
Check Boot Order your Computer is Using
If the boot order in your BIOS settings has changed Windows might be getting confused so make sure.
- Windows Boot Manager is first in priority
- Internal drive is selected
- Fast Boot is temporarily disabled for troubleshooting
- If Windows Boot Manager is missing entirely, continue to repair steps.
Use Automatic Repair to Restore Windows Boot Menu
- Interrupt boot three times to enter recovery (Full Guide Here)
- Go to Troubleshoot > Advanced Options > Startup Repair

This tool fixes common issues such as:
- Missing boot files
- Corrupted BCD
- Invalid boot entries
It is safe and should be attempted first. Though it does sometimes fail so be prepared for that.
Rebuild Boot Files Using BCDBoot
This is one of the most reliable fixes though does look a little complicated at first.
- Boot from Windows installation media. You'll need to create this using a USB drive and Rufus
- Open Command Prompt from recovery
- Run:
diskpart
list disk
select disk 0
list volume
Identify the EFI partition. It is usually FAT32 and around 100 to 300 MB.
select volume X
assign letter=S
exit
Then rebuild boot files:
bcdboot C:\Windows /s S: /f UEFI
Important corrections:
Repair Boot Sector and BCD
- Run:
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
If access is denied on fixboot, format the EFI partition carefully:
format S: /FS:FAT32
- Then rerun bcdboot from the steps above.
Recreate EFI Boot Entry in BIOS
If files exist but entry is missing:
- Enter BIOS
- Add new boot option
- Navigate to EFI partition
- Select:
EFI\Microsoft\Boot\bootmgfw.efi
This manually restores the boot entry.
Convert Legacy Disk to GPT
- If your system was installed in Legacy mode, convert it:
mbr2gpt /convert /allowfullos
- Then switch BIOS to UEFI.
Note: You can find a full guide on the process here.
Reset BIOS Settings
Load optimized defaults and reconfigure:
- Boot mode to UEFI
- Correct boot order
Update or Roll Back BIOS
This won't be possible for everyone and the process is different on all devices so you will need to do a bit of research for your hardware before you know if you can do it then how to do it.