Cloning your Windows 11 system drive to a high-speed M.2 NVMe or a larger SATA SSD should end with faster boot times and immediate game loading, but it frequently results in a dead end. Instead of booting into your desktop, your PC hits a black screen, an INACCESSIBLE_BOOT_DEVICE Blue Screen of Death (BSOD), or loops continuously into the motherboard UEFI/BIOS. This failure is a common roadblock when upgrading PC storage, triggered because Windows 11 enforces strict boot requirements like UEFI mode, Secure Boot, paired EFI system partitions, and exact drive signatures.
Seeing your new drive refuse to boot is alarming, but your underlying game installs, personal files, and operating system data remain safe. In 2026, modern disk cloning applications frequently duplicate file data accurately while failing to update motherboard boot entries, clear disk signature collisions, or configure the correct NVMe storage controller drivers. Fixing a non-booting cloned SSD involves systematic troubleshooting through your motherboard’s firmware settings and the Windows Recovery Environment command line.
Likely Causes
| Cause | How to confirm | Fix difficulty |
|---|---|---|
| Dual-Drive Boot Priority Conflict | PC boots fine only when old drive is attached, or boots to old SSD. | Easy |
| Disk Signature Collision | Target drive appears “Offline” in Disk Management on another PC. | Easy |
| Incorrect Storage Controller Driver Mode | System crashes on boot with error code INACCESSIBLE_BOOT_DEVICE. | Moderate |
| Corrupted Boot Configuration Data (BCD) | Error code 0xc000000e or 0xc000000f appears on a blue screen. | Moderate |
| Missing or Misconfigured EFI System Partition | UEFI boot menu lists no “Windows Boot Manager” for the target SSD. | Advanced |
| Legacy MBR Layout on UEFI-Only Windows 11 System | Drive uses MBR scheme and motherboard UEFI has CSM disabled. | Advanced |
Fix 1: Disconnect the Original Drive and Reorder Boot Priority
What causes it
When both the original source drive and the cloned target drive remain connected during initial boot, the motherboard’s UEFI firmware gets confused by duplicate Windows Boot Manager entries. The system often defaults to booting from the old drive or fails entirely due to drive path conflicts.
How to check
Power off the system, physically disconnect the old source SSD (unplug its SATA cable or remove the M.2 card from the motherboard slot), and turn on the PC. If the system enters UEFI directly, check the Boot Menu list.
What to do
1. Shut down the PC and disconnect the power supply.
2. Unplug the original source drive entirely.
3. Power on the PC and tap Del or F2 repeatedly to enter motherboard BIOS/UEFI.
4. Navigate to Boot > Boot Option Priorities.
5. Set Boot Option #1 to “Windows Boot Manager” corresponding to the new cloned SSD.
6. Press F10 to save changes and exit.
How to undo it
Re-enter UEFI setup using Del or F2, navigate to the Boot tab, re-attach the original drive, and set Boot Option #1 back to your original storage drive.
Fix 2: Resolve Disk Signature Collision via Diskpart
What causes it
Cloning software creates an exact bit-for-bit copy of the source drive, including its unique Master Boot Record (MBR) or GUID Partition Table (GPT) disk signature ID. Windows automatically marks one of two identical signatures offline to prevent system errors, breaking boot paths.
How to check
Boot into Windows using your original drive (with the new drive connected externally or in a secondary M.2 slot). Press Win + X, select Disk Management, and check if the cloned drive displays an “Offline (Disk ID collision)” status.
What to do
1. Press Win + X and select Terminal (Admin) or Command Prompt (Admin).
2. Type diskpart and press Enter.
3. Type list disk to locate your cloned SSD disk number.
4. Type select disk X (replace X with the target drive number).
5. Type online disk if the drive is marked offline.
6. Type uniqueid disk to view the current ID.
7. Type uniqueid disk id=87654321 (for MBR) or uniqueid disk id=b2c1a012-3456-7890-abcd-ef0123456789 (for GPT) to generate a new unique identifier.
8. Type exit and reboot with only the cloned SSD attached.
How to undo it
Open diskpart in Command Prompt, execute select disk X, and restore the original ID by typing uniqueid disk id=[Original_ID] using the exact original hex string saved prior to changing it.
Fix 3: Toggle Storage Controller Mode (AHCI vs. RAID / Intel VMD)
What causes it
If the original operating system was installed under standard AHCI mode, but your new NVMe drive relies on Intel VMD (Volume Management Device) or RAID mode in BIOS (or vice versa), Windows 11 lacks the required boot driver during startup, triggering a BSOD.
How to check
Boot the PC with only the new drive connected. If Windows attempts to launch and immediately crashes with the stop code INACCESSIBLE_BOOT_DEVICE, a storage controller protocol mismatch is active.
What to do
1. Turn on the PC and tap Del or F2 to enter BIOS/UEFI.
2. Navigate to Advanced > Storage Configuration or System Configuration.
3. Locate SATA Operation or VMD Controller Settings.
4. Switch the mode from RAID / Intel VMD Enabled to AHCI / Disabled (or switch from AHCI to RAID if your original drive ran in RAID mode).
5. Save settings with F10 and reboot.
6. If Windows boots successfully, open Command Prompt as Admin and run bcdedit /set {current} safeboot minimal, reboot into Safe Mode once to force driver initialization, then run bcdedit /deletevalue {current} safeboot and restart normally.
How to undo it
Re-enter UEFI configuration on startup, navigate back to Storage Configuration, and revert the controller setting back to its original selection (AHCI or RAID/VMD).
Fix 4: Rebuild Boot Configuration Data (BCD) via Windows RE
What causes it
Cloning tools often leave hardcoded drive pointer paths inside the Boot Configuration Data (BCD) store pointing to old volume identifiers. When the hardware layout changes, the bootloader cannot locate winload.efi.
How to check
The system stops at a recovery screen stating “Your PC/Device needs to be repaired” with error codes `0xc000000e` or `0xc000000f` targeting file path `\WINDOWS\system32\winload.efi`.
What to do
1. Boot from a Windows 11 installation USB flash drive.
2. Click Next on the language screen, then select Repair your computer in the bottom-left corner.
3. Choose Troubleshoot > Advanced Options > Command Prompt.
4. Execute the following commands in order:
bootrec /fixmbr
bootrec /fixboot
bootrec /rebuildbcd
5. When prompted to add installation to boot list, press Y and press Enter.
6. If bootrec /fixboot yields an “Access is denied” error, execute bcdboot C:\Windows /s S: /f UEFI (where C: is your Windows OS volume and S: is the assigned EFI volume letter).
How to undo it
BCD updates simply rewrite boot pointers to match real drives. To undo modifications, return to the recovery Command Prompt and run bootrec /rebuildbcd again or restore a backed-up BCD file using bcdedit /import [Backup_Path].
Fix 5: Recreate the EFI System Partition (ESP)
What causes it
Some cloning programs skip or truncate the hidden EFI System Partition (ESP) during partition resizing. Without a valid FAT32 EFI partition containing boot files, modern UEFI hardware cannot initialize Windows 11.
How to check
Boot into Windows RE Command Prompt, launch diskpart, run list partition on your target drive, and check if a system partition formatted in FAT32 (usually around 100MB to 500MB) exists.
What to do
1. Boot into Windows RE Command Prompt using your USB installation media.
2. Type diskpart and press Enter.
3. Type select disk 0 (replace 0 with your target SSD number).
4. Type list volume to locate your main OS volume letter (e.g., C:) and check for an existing FAT32 EFI volume.
5. If missing, select the primary OS volume and shrink it: shrink desired=100 minimum=100.
6. Create the partition: create partition efi size=100.
7. Format as FAT32: format quick fs=fat32 label="System".
8. Assign a temporary letter: assign letter=S.
9. Exit diskpart by typing exit.
10. Install new boot files by entering: bcdboot C:\Windows /s S: /f UEFI.
11. Restart your PC.
How to undo it
To remove the newly created partition, boot back into Diskpart, run select disk 0, run select partition X (where X is the new 100MB partition), and run delete partition override.
Fix 6: Convert MBR Disk Layout to GPT Scheme
What causes it
Windows 11 strictly requires the UEFI boot mode, which depends on a GUID Partition Table (GPT). If your cloned target drive inherited an legacy MBR (Master Boot Record) layout from an older source system, UEFI mode will not detect it as bootable.
How to check
In Windows RE Command Prompt, run diskpart, then list disk. Check the column labeled GPT for your cloned drive. If there is no asterisk (*) under the GPT column, your drive is formatted as MBR.
What to do
1. Boot into the Windows RE Command Prompt using Windows 11 USB installation media.
2. Check validation status by entering: mbr2gpt /validate /disk:0 /allowFullOS (replace 0 with target drive index).
3. If validation succeeds, execute: mbr2gpt /convert /disk:0 /allowFullOS.
4. Wait for the conversion process to write the GPT structure and construct an EFI partition.
5. Type exit, restart your computer, and enter BIOS setup.
6. Verify that CSM (Compatibility Support Module) is set to Disabled and Boot Mode is set strictly to UEFI.
7. Save and reboot.
How to undo it
Converting back to MBR non-destructively is not supported natively by Windows tools. Reverting requires wiping the drive via Diskpart with the clean command and re-initializing as MBR, or using third-party partition tools.
If Nothing Works
If repairing boot files and converting partition structures fails to yield a bootable system, your initial cloning software likely suffered a silent failure, dropped system file permissions, or generated corrupted data blocks during execution.
The cleanest path forward is performing a direct clean installation of Windows 11 on the new SSD. Connect your Windows 11 USB installation boot drive, boot to it, select Custom Install, and wipe all partitions on the target drive before installing. Once Windows 11 is up and running on your new SSD, shut down, attach your original SSD as a secondary storage drive, and transfer your gaming libraries (such as `Steam\steamapps\common` or Epic Games directories), user documents, and personal files directly across drives without re-downloading everything.
Alternatively, perform an offline block-level clone using a dedicated bootable utility like Rescuezilla or Clonezilla running outside of Windows. Ensure you enable “sector-by-sector copy” in the software options to mirror hidden metadata, drive signatures, and recovery configurations accurately.
FAQ
Why isn’t my cloned NVMe SSD showing up in the UEFI boot menu?
UEFI motherboards do not display raw storage drives in the boot menu unless the drive contains a valid FAT32 EFI System Partition housing a registered `bootmgfw.efi` loader. If the drive lacks an EFI partition or uses an MBR partition layout with CSM disabled, the motherboard ignores it. Rebuilding the EFI partition with `bcdboot` resolves this.
Will cloning my Windows 11 drive deactivate my OS license?
No. Windows 11 licensing links directly to your motherboard’s digital entitlement or your Microsoft account. Swapping or cloning an internal storage drive does not change the core hardware hash of the PC, so Windows 11 automatically re-activates once internet connectivity is established.
Should I enable CSM (Compatibility Support Module) to boot Windows 11?
No, CSM must remain disabled for standard Windows 11 operation. Windows 11 requires native UEFI mode, DirectStorage capabilities, and Secure Boot enablement—features that are disabled or bypassed when CSM/Legacy boot mode is active. Convert your cloned drive to GPT instead of turning on CSM.
What partition style does Windows 11 require to boot from a cloned drive?
Windows 11 requires a GUID Partition Table (GPT) layout paired with an EFI System Partition formatted in FAT32. Master Boot Record (MBR) layouts are incompatible with Windows 11 UEFI boot requirements without legacy translation layers that break modern security features.