Hi Brendan,
Hope you're doing well.
Moving the WinRE (Windows Recovery Environment) partition to a different disk can be a bit tricky, and it seems there might be an issue with the boot configuration. Here are steps you can follow to troubleshoot and potentially resolve the issue:
- Use Diskpart:
(1) Open a Command Prompt as an Administrator.
(2) Type diskpart and press Enter.
(3) Use list disk and list partition to ensure the partition on Disk 1 is active and correctly formatted.
- Reconfigure Boot Configuration:
Use BCDBOOT:
(1) Open a Command Prompt as Administrator.
(2) Run the following command to recreate the BCD (Boot Configuration Data) on Disk 1:
bcdboot D:\Windows /s C:
(Replace "D:" with the drive letter where Windows is installed on Disk 1, and "C:" with the drive letter of the active partition on Disk 1.)
- Check BCD Store:
Use BCDEDIT:
(1) Open a Command Prompt as Administrator.
(2) Run "bcdedit" to check the boot configuration.
(3) Make sure that the entries point to the correct device and partition.
- Update Boot Order:
Use BCDEDIT:
(1) Open a Command Prompt as Administrator.
(2) Run the following command to set the boot order:
bcdedit /displayorder {current} /addfirst {recovery}
(Replace "{recovery}" with the identifier of your WinRE entry.)
- Repair Windows Image:
Use DISM:
(1) Open a Command Prompt as Administrator.
(2) Run the following commands to repair the Windows image:
dism /online /cleanup-image /restorehealth
sfc /scannow
- Check Disk for Errors:
Use CHKDSK:
(1) Open a Command Prompt as an Administrator.
(2) Run "chkdsk /f" on both Disk 0 and Disk 1 to check for and fix any disk errors.
- Check BIOS/UEFI Settings:
Ensure BIOS/UEFI Settings: Check the BIOS/UEFI settings to make sure that the correct disk is set as the primary boot device.
- Verify Hardware Connections:
Check Hardware Connections: Ensure that Disk 1 is properly connected and recognized by the system.
- Use Windows Installation Media:
Repair from Installation Media:
(1) Boot from the Windows installation media.
(2) Choose "Repair your computer" > "Troubleshoot" > "Advanced options" > "Command Prompt."
(3) Repeat the steps mentioned above to recreate the BCD and verify the disk/partition structure.
After performing these steps, try rebooting and see if the issue is resolved. If the problem persists, you may need to review the steps and double-check the configuration to ensure accuracy.
I hope this helps!
Best Regards