Переехал на новое железо, решил после установки переместить Recovery на отдельный раздел. Пока получаю ошибку 70. Пытался побороть, указывая не букву раздела, а путь через GLOBALROOT, как это сказано на форуме
social.technet.microsoft.com/Forums/en-US/dabbf334-8c74-4134-b3d7-e8572cd4cc03/reagentcexe-operation-failed-70, но ошибка не ушла.
Судя по
superuser.com/questions/1101816/reagentc-operation-failed-70 предположение
severagent007 о том, что 300 метров — это мало, скорее всего, окажется верным.
Смотрим, что есть сейчас:
Код:

>reagentc /info
Windows Recovery Environment (Windows RE) and system reset configuration
Information:
Windows RE status: Enabled
Windows RE location: \\?\GLOBALROOT\device\harddisk0\partition4\Recovery\WindowsRE
Boot Configuration Data (BCD) identifier: 2bd2bc12-f8be-4005-b2f5-5721e193f2ac
Recovery image location:
Recovery image index: 0
Custom image location:
Custom image index: 0
REAGENTC.EXE: Operation Successful.
Монтируем раздел Recovery:
Код:

>diskpart
Microsoft DiskPart version 6.3.9600
Copyright (C) 1999-2013 Microsoft Corporation.
On computer: VM
DISKPART> sel disk 0
Disk 0 is now the selected disk.
DISKPART> sel vol 2
Volume 2 is the selected volume.
DISKPART> assign letter=R
DiskPart successfully assigned the drive letter or mount point.
DISKPART> exit
Leaving DiskPart...
Копируем Winre.wim:
Код:

>robocopy C:\Recovery R:\Recovery Winre.wim /E
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : 26 ноября 2019 г. 10:52:45
Source : C:\Recovery\
Dest : R:\Recovery\
Files : Winre.wim
Options : /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30
------------------------------------------------------------------------------
New Dir 0 C:\Recovery\
New Dir 1 C:\Recovery\WindowsRE\
100% New File 240.9 m Winre.wim
------------------------------------------------------------------------------
Total Copied Skipped Mismatch FAILED Extras
Dirs : 2 2 0 0 0 0
Files : 1 1 0 0 0 0
Bytes : 240.96 m 240.96 m 0 0 0 0
Times : 0:00:01 0:00:01 0:00:00 0:00:00
Speed : 157038433 Bytes/sec.
Speed : 8985.811 MegaBytes/min.
Ended : 26 ноября 2019 г. 10:52:46
Пытаемся включить Recovery на новом разделе:
Код:

>reagentc /setreimage /path R:\Recovery\WindowsRE /target C:\Windows
REAGENTC.EXE: Windows RE is already enabled.
>reagentc /disable
REAGENTC.EXE: Operation Successful.
>reagentc /setreimage /path R:\Recovery\WindowsRE /target C:\Windows
Directory set to: \\?\GLOBALROOT\device\harddisk0\partition1\Recovery\WindowsRE
REAGENTC.EXE: Operation Successful.
>reagentc /enable
REAGENTC.EXE: Operation failed: 70
REAGENTC.EXE: An error has occurred.
>reagentc /setreimage /path \\?\GLOBALROOT\device\harddisk0\partition1\Recovery\WindowsRE /target C:\Windows
Directory set to: \\?\GLOBALROOT\device\harddisk0\partition1\Recovery\WindowsRE
REAGENTC.EXE: Operation Successful.
>reagentc /enable
REAGENTC.EXE: Operation failed: 70
REAGENTC.EXE: An error has occurred.
Кстати, обратите внимание на
Код:

>reagentc /setreimage /path R:\Recovery\WindowsRE /target C:\Windows
Directory set to: \\?\GLOBALROOT\device\harddisk0\partition1\Recovery\WindowsRE
Устанавливается путь через GLOBALROOT, так что совет с social.technet.microsoft.com странный.