Quick fix: After disk cloning, “Boot Manager missing operating system” means the BCD (Boot Configuration Data) points to the old disk’s identifiers. Boot from Windows 11 install USB → Repair your computer → Command Prompt → bootrec /rebuildbcd followed by bcdboot C:\Windows /s S: /f UEFI (S = ESP letter). Reboot.
You cloned your disk to a new SSD. New disk won’t boot — “Operating System Not Found” or “Boot Manager is missing.” The cause is BCD references the old disk’s GUID/path. Cloning copies files but Windows boot config needs updating.
Affects: Windows 11 (and Windows 10) after disk cloning.
Fix time: ~30 minutes.
What causes this
Cloning tools (Macrium Reflect, Acronis, Samsung Data Migration) copy partitions sector-by-sector. They preserve the BCD file, but its entries reference the source disk’s identifiers (Disk Signature, partition GUIDs). After cloning and physical disk swap, those references don’t match the new disk — BCD can’t find Windows.
Method 1: Rebuild BCD with bootrec
The standard recovery.
- Boot the PC from a Windows 11 install USB. (Create one with Media Creation Tool on another PC.)
- Setup screen: click Repair your computer → Troubleshoot → Advanced options → Command Prompt.
- Identify the Windows install drive:
diskpart list volume exitLook for Windows partition (typically C: in WinRE; can be D:).
- Rebuild BCD:
bootrec /scanos bootrec /rebuildbcdWhen asked to add to boot list: Y.
- For UEFI installs that fail with bootrec: use bcdboot:
diskpart list volume select volume N (EFI partition, FAT32, ~100MB) assign letter=S exit bcdboot C:\Windows /s S: /f UEFI diskpart select volume N remove letter=S exit - Reboot. Remove USB. Windows should boot from new disk.
This rewrites BCD with correct disk identifiers.
Method 2: Verify BIOS boot order points to new disk
For when BCD is fine but BIOS still tries old disk.
- Power off PC. Disconnect old disk (or keep both connected).
- Boot. Press F2/Del to enter BIOS.
- Boot → Boot Order: ensure new disk is first.
- For UEFI: Boot Order should show Windows Boot Manager on the new disk. If old disk’s Windows Boot Manager entry still present: delete (some BIOS allow), or just move new one to top.
- Save BIOS settings (F10) and exit.
- If both old + new disks are connected, BIOS may detect both Windows installs. Pick the new one or remove old.
- For PCs that won’t boot from new disk even with order correct: check that new disk is detected in BIOS (not in legacy IDE mode if BIOS supports AHCI).
This handles BIOS-side boot order.
Method 3: Re-establish disk signature
For advanced cases.
- From WinRE Command Prompt:
diskpart→list disk. Note disks and their GUID/Signature. - If new disk has incorrect signature:
select disk 0→uniqueid disk. View current signature. - If needed:
uniqueid disk id=NEWVALUEto set. Caution. - For Macrium Reflect: it has a Fix Boot Problems built-in tool. Boot from Macrium rescue disc → Other Tasks → Fix Windows Boot Problems. Often fixes cloning-related boot issues automatically.
- For Samsung Data Migration: pre-clone settings include “Activate boot manager.” If you didn’t use that option, re-run migration with it ticked.
- For Acronis True Image: post-clone → Acronis Boot Manager handles it.
- For pure dd-style clones (Linux): may not preserve all metadata. Use Windows clone tools instead.
This is the right path for stubborn cases.
How to verify the fix worked
- PC boots from new disk. Reaches Windows login.
bcdedit /enumin Terminal shows Windows Boot Manager entries pointing to current disk.- Performance is good — new SSD performance benefits visible (faster boot, snappier).
If none of these work
If new disk still won’t boot: Old disk still connected: disconnect old disk physically. Boot — if works, BCD/BIOS was confused. Reconnect old disk; reconfigure BCD priority. For MBR vs GPT mismatch: cloned MBR disk to GPT, or vice versa. Use mbr2gpt tool if needed: mbr2gpt /convert /allowfullos. For Secure Boot issues: temporarily disable Secure Boot in BIOS. After Windows boots successfully, re-enable. For BitLocker-encrypted source: source had BitLocker. Cloned disk needs BitLocker recovery key entered on first boot. Or decrypt source before cloning. Last resort: fresh Windows install on new disk: faster than fighting BCD on clone. Use Windows install USB to install on new disk, restore data from old.
Bottom line: Boot from Windows install USB → Command Prompt → bootrec /rebuildbcd + bcdboot C:\Windows /s S: /f UEFI. Verify BIOS boot order points to new disk. Disconnect old disk to avoid confusion.