Key References
Overview Steps
- Obtain backup of target system (VHD or Macrium image of all drives preferred)
- Manually partition destination disk (Boot to WinPE/Macrium Recovery, see script below to partition)
- Restore C: partition from backup to Windows partition on the new (now GPT) disk
- Repair Windows Boot (Fix Windows Boot Problems)
Tips
- Use Macrium Reflect Free – backup to external drive and test prior
- A fast external hard drive will make this step much easier. Store the backup image on it, then move it to the new machine to restore.
list disk
select disk 0
clean
convert gpt
create partition efi size=512
format quick fs=fat32 label="System"
assign letter="S"
create partition msr size=128
create partition primary
shrink minimum=500
format quick fs=ntfs label="Windows"
assign letter="W"
create partition primary
format quick fs=ntfs label="Recovery"
assign letter="R"
set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
gpt attributes=0x8000000000000001
list volume
exit