These instructions were found at https://superuser.com/questions/1453790/how-to-move-the-recovery-partition-on-windows-10
-
See the status of the recovery partition
In Windows 10:reagentc /info -
Deregister the recovery partition
In Windows 10:reagentc /disable -
(Optional) Backup recovery partition
- In Windows 10:
diskpartin order to assign a drive letter to the partition
DISKPART> list disk DISKPART> select disk <the-number-of-disk-where-current-recovery-partition-locate> DISKPART> list partition DISKPART> select partition <the-number-of-current-recovery-partition> DISKPART> assign letter=O- In Windows 10: Capture the contents of the partition in an image:
Dism /Capture-Image /ImageFile:C:\recovery-partition.wim /CaptureDir:O:\ /Name:"Recovery"- (Optional) In Windows 10: Restore the contents in a new drive:
Dism /Apply-Image /ImageFile:C:\recovery-partition.wim /Index:1 /ApplyDir:N:\ - In Windows 10:
-
In Linux use
gpartedto move the recovery partition using the "Move/Resize" option, assuming there is unassigned space before / after the recovery partition. Align tonone. -
In Windows 10: Re-register the recovery partition with
reagentc /enable, so Windows recovery can work.