When you clone an NVMe SSD and install both drives on Windows 11, the operating system may fail to boot or assign drive letters incorrectly. This happens because the cloned drive retains the same disk signature as the original. Windows 11 uses disk signatures to identify volumes, and duplicate signatures cause a collision that prevents proper drive detection. This article explains why disk signature collisions occur and provides a step-by-step method to resolve them using built-in Windows tools and a free utility.
Key Takeaways: Resolving Disk Signature Collision on Windows 11
- Diskpart command
UNIQUEID DISK: Changes the disk signature on the cloned drive to avoid collision with the original drive. - Disk Management rescan: Forces Windows to re-read disk signatures after the change, making the cloned drive visible and accessible.
- Boot Configuration Data (BCD) repair: Fixes boot entries if the collision prevents Windows from starting on the intended drive.
Why Disk Signature Collisions Happen After Cloning NVMe SSDs
A disk signature is a unique 4-byte identifier stored in the master boot record or GPT header of every drive. Windows 11 uses this signature to map volume mount points and drive letters. When you clone an NVMe SSD using software like Macrium Reflect, Clonezilla, or Samsung Magician, the cloning process copies all data sector-by-sector, including the disk signature. If you connect both the original and cloned drives to the same system, Windows detects two drives with the same signature and cannot determine which one to use. This results in one or both drives appearing as “Unknown” or “Not Initialized” in Disk Management, or the system may boot to a black screen with a blinking cursor.
The collision is particularly common with NVMe SSDs because they often connect directly to the CPU via PCIe lanes, and Windows may attempt to assign the same drive letter to both drives simultaneously. On older SATA drives, the collision sometimes resolves automatically because the BIOS enumerates drives in a fixed order. NVMe drives do not follow this order, making manual intervention necessary.
Steps to Change the Disk Signature on the Cloned NVMe SSD
The most reliable method to resolve a disk signature collision is to assign a new unique signature to the cloned drive using the Diskpart command-line tool. This method works whether Windows boots normally or fails to start. If Windows boots, you can run Diskpart from the desktop. If the system fails to boot, use the Windows Recovery Environment or a Windows installation USB drive to access the command prompt.
Method 1: Using Diskpart from a Running Windows 11 System
- Open Disk Management
Press Win + X and select Disk Management. Identify the cloned drive. It will appear as “Unknown” or “Not Initialized” and will show the same size and partition layout as your original drive. Note the disk number, for example, Disk 1. - Launch Command Prompt as Administrator
Press Win + R, type cmd, then press Ctrl + Shift + Enter. Click Yes on the User Account Control prompt. - Start Diskpart
Type diskpart and press Enter. A new Diskpart window opens. - Select the Cloned Drive
Type list disk and press Enter. Locate the cloned drive by its size. Then type select disk X where X is the disk number of the cloned drive, and press Enter. Diskpart confirms the selection. - Display the Current Disk Signature
Type uniqueid disk and press Enter. The output shows the current hex value, for example, 12345678. - Assign a New Disk Signature
Type uniqueid disk id=ABCDEF01 and press Enter. Replace ABCDEF01 with any valid 8-character hex value that does not match the original drive’s signature. Use a value different from the one shown in step 5. Diskpart confirms the change. - Exit Diskpart and Rescan Disks
Type exit and press Enter to close Diskpart. In Disk Management, click Action and then Rescan Disks. The cloned drive now appears as online and shows its correct partitions and drive letters.
Method 2: Using Diskpart from Windows Recovery Environment
If the disk signature collision prevents Windows from booting, use the following steps. You need a Windows 11 installation USB drive or access to the recovery partition.
- Boot from Windows 11 Installation Media
Insert the USB drive and restart the computer. Press the appropriate key for your motherboard to open the boot menu, then select the USB drive. On the Windows Setup screen, click Next, then click Repair your computer at the bottom left. - Open Command Prompt
Navigate to Troubleshoot > Advanced options > Command Prompt. The command prompt opens. - Run Diskpart
Type diskpart and press Enter. Then type list disk and press Enter. Identify the cloned drive by its size. Note that the original drive and cloned drive will show the same size. If possible, disconnect the original drive physically to avoid confusion. Alternatively, compare the partition layout using select disk X followed by detail disk to see the volume information. - Change the Signature
Type select disk X where X is the cloned drive. Then type uniqueid disk id=ABCDEF01 and press Enter. Use a hex value that does not match any other drive on the system. - Exit and Restart
Type exit twice to close Diskpart and the command prompt. Click Continue or Restart to boot normally. Windows should now start from the intended drive.
Method 3: Using a Third-Party Utility (Bootice)
If you prefer a graphical interface, use the free utility Bootice. This method requires a working Windows system.
- Download and Run Bootice
Download Bootice from a trusted source. Extract the ZIP file and run Bootice.exe as administrator. - Select the Physical Disk
In the Physical Disk tab, select the cloned drive from the dropdown list. The list shows disk numbers and sizes. - Change the Disk Signature
Click Edit Disk Signature. In the dialog, type a new hex value in the Disk Signature field. Click Set and then OK. Bootice writes the new signature to the cloned drive. - Verify the Change
Open Disk Management and click Action > Rescan Disks. The cloned drive appears with its correct volumes.
If Windows 11 Still Has Issues After Changing the Signature
Boot Fails with “Bootmgr is missing” or “No bootable device”
After changing the disk signature, the BCD on the cloned drive may still reference the original signature. Boot from the Windows 11 installation USB, open Command Prompt, and run the following commands to rebuild the BCD:
- Identify the System Reserved Partition
Type diskpart, then list volume. Look for the volume labeled “System Reserved” or one with the FAT32 file system that is about 100 MB to 500 MB in size. Note its drive letter, for example, D:. - Assign a Drive Letter
If the volume has no letter, type select volume X where X is the volume number, then assign letter=D. Exit Diskpart by typing exit. - Rebuild the BCD
Type bcdboot C:\Windows /s D: /f UEFI and press Enter. Replace C: with the drive letter of your Windows installation if different. Replace D: with the system reserved partition letter. This command copies the boot files and creates a new BCD store. Restart the computer.
Drive Letters Conflict or Missing Volumes
If after changing the signature the cloned drive shows no drive letters, open Disk Management, right-click each partition on the cloned drive, and select Change Drive Letter and Paths. Assign a letter that does not conflict with the original drive. If the original drive and cloned drive have the same volume label, rename one of them in File Explorer to avoid confusion.
Diskpart vs Bootice: Comparison for Changing Disk Signatures
| Item | Diskpart (Built-in) | Bootice (Third-Party) |
|---|---|---|
| Availability | Included in all Windows 11 editions | Requires download from a third-party site |
| Interface | Command-line only | Graphical user interface |
| Boot-time Access | Works from Recovery Environment | Requires a running Windows system |
| Risk Level | Low if commands are entered correctly | Low if used with administrative privileges |
| Additional Features | Can also manage partitions and volumes | Includes partition editor and BCD editor |
Now you can safely use two cloned NVMe SSDs on Windows 11 without disk signature conflicts. After changing the signature, verify that both drives appear in File Explorer with distinct drive letters. To prevent future collisions, always disconnect the original drive before cloning, or use cloning software that offers a “unique signature” option. For advanced users, consider using the diskpart command UNIQUEID DISK as part of a post-cloning script to automate signature assignment.