Somehow after cloning a Windows 10 disk to SSD, the regular partition worked fine, but the recovery partition (sometimes called WinRE: short for Windows Recovery Environment or Windows RE) didn’t.
In short, I only had to perform two actions to get this fixed, both from the Administrator elevated command prompt:
- Set the partition ID of the Recovery partition from
7
to27
(this is for an MBR disk; for GPT disks, these values are different, see the first link below). I did this usingdiskpart
. - Re-enabling the Recovery partition by executing
reagentc /info
to check if it was disabled, thenreagentc /enable
(if it wasn’t disabled first, I had to precede it withreagentc /enable
).
Before this, bcdedit /enum would only return the
Windows Boot Loader
entry for the C: drive, but had norecoverysequence
and now it had.
Since there are cases where much more action is needed, here are some links for just when I run into more complicated situations: