Create a new Recovery partition as per the instructions step 5.
- Create a new recovery partition.
- First, check if the disk partition style is a GUID Partition Table (GPT) or a Master Boot Record (MBR). To do that, run list disk. Check if there is an asterisk character (*) in the “Gpt” column. If there is an asterisk character (*), then the drive is GPT. Otherwise, the drive is MBR.
- If your disk is GPT, run create partition primary id=de94bba4-06d1-4d40-a16a-bfd50179d6ac followed by the command gpt attributes =0x8000000000000001
- If your disk is MBR, run create partition primary id=27
- To format the partition, run format quick fs=ntfs label=”Windows RE tools”
- To confirm that the WinRE partition is created, run list vol
- To exit from diskpart, run exit
- To re-enable WinRE, run reagentc /enable
- To confirm where WinRE is installed, run reagentc /info
Just so you know - this will generally fail as written if you're using MBR (and I suspect GPT as well)
The issue is - the steps for MBR are slightly out of order.
When you run create partition primary id=27, then do the format quick fs=ntfs label=”Windows RE tools” step, your partition will be reset to NTFS id of 07. Your reagentc.exe won't be able to find your new recovery partition. At least it didn't on my computer.
I recommend resetting the primary id back to 27 with a step 1.5: set id=27
Then - you should be good to go. You can verify that the recovery partition is set correctly by using Window's Disk Management tool.