How to recreate Recovery partition?

Discussion in 'Windows 10' started by valery84, Dec 31, 2015.

  1. valery84

    valery84 MDL Novice

    Sep 24, 2009
    9
    0
    0
    I converted my bios legacy booting windows 10 in UEFI boot, without reinstall OS, as the great user Tito suggested me some days ago. But I did a mistake accidentally deleting 450 MB recovery partition. Is there a way to re-create it without a clean install?
     
  2. SOCRATE_MMXII

    SOCRATE_MMXII MDL Expert

    Jan 25, 2012
    1,033
    318
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. garlic

    garlic MDL Novice

    Nov 27, 2015
    9
    3
    0
    That works only for "Recovery image location", not for "Windows RE location" (450 MB Recovery partition).
     
  4. eric33

    eric33 MDL Junior Member

    Nov 21, 2012
    80
    13
    0
    boot with paragon hard disk manager( or other) and try to recover the delete partition

     
  5. Bat.1

    Bat.1 MDL Expert

    Oct 18, 2014
    1,201
    1,388
    60
    From the OP I'm thinking He's asking about the 450MB partition that's created when You upgrade. So if He's not planning on restoring to the earlier OS version I don't think it's needed ??
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. valery84

    valery84 MDL Novice

    Sep 24, 2009
    9
    0
    0
    #8 valery84, Jan 1, 2016
    Last edited: Jan 1, 2016
    (OP)
    tell me if I am wrong, but the 450MB partition is created not only with upgrade, but also with clean install, and it helps when system doesn't boot for a failure, restoring system at actual (not earlier) OS version.

    I obtained to recover WinRE, with REAgentC and following some tutorial, but not to reconstruct partition. Now, if I try to go in "create recovery disk" I haven't the chance to create a usb recovery disk
     
  7. valery84

    valery84 MDL Novice

    Sep 24, 2009
    9
    0
    0
    Ok, there are 3 partitions on disk 0. Here are details:
    Partizione 1
    Tipo : c12a7328-f81f-11d2-ba4b-00a0c93ec93b
    Nascosta : Sì
    Richiesta: No
    Attributo : 0X8000000000000000
    Offset in byte: 1048576

    Volume ### Let. Etichetta Fs Tipo Dim. Stato Info
    --------- --- ----------- ----- ---------- ------- --------- --------
    * Volume 3 SISTEMA FAT32 Partizione 100 Mb Integro Sistema

    Partizione 2
    Tipo : e3c9e316-0b5c-4db8-817d-f92df00215ae
    Nascosta : Sì
    Richiesta: No
    Attributo : 0X8000000000000000
    Offset in byte: 105906176

    Nessun volume associato alla partizione.

    Partizione 3
    Tipo : ebd0a0a2-b9e5-4433-87c0-68b6b72699c7
    Nascosta : No
    Richiesta: No
    Attributo : 0000000000000000
    Offset in byte: 221249536

    Volume ### Let. Etichetta Fs Tipo Dim. Stato Info
    --------- --- ----------- ----- ---------- ------- --------- --------
    * Volume 2 C Windows 10 NTFS Partizione 238 Gb Integro Avvio
     
  8. Bat.1

    Bat.1 MDL Expert

    Oct 18, 2014
    1,201
    1,388
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. agent268

    agent268 MDL Junior Member

    Feb 20, 2012
    92
    33
    0
    #13 agent268, Jan 1, 2016
    Last edited by a moderator: Apr 20, 2017
    Thanks for posting the disk and partition layout details. The following assumes that WinRE.wim exists in C:\windows\system32\recovery and that you are running everything from an Administrator level Command Prompt. So make sure to adjust the locations to fit your situation.

    Code:
    DiskPart
    Select disk 0
    Select part 3
    shrink minimum=450
    Creat part primary
    format quick fs=ntfs label="Recovery Tools"
    assign letter="R"
    set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
    gpt attributes=0x8000000000000001
    Exit
    md R:\Recovery\WindowsRE
    copy C:\Windows\System32\Recovery\winre.wim R:\Recovery\WindowsRE\winre.wim
    C:\Windows\System32\reagentc.exe /setreimage /path R:\Recovery\WindowsRE /target C:\Windows
    C:\Windows\System32\reagentc.exe /enable /target C:\Windows
    Exit
     
  10. valery84

    valery84 MDL Novice

    Sep 24, 2009
    9
    0
    0
    Thank You agent268 :worthy:. Made all the procedure and all is working, but only two adjustment:
    1) before format must be typed command: "create partition primary"
    2) I haven't a winre.wim in the C:\Windows\System32\Recovery\ directory and I got it from installation disk, after mounting install.wim.
    Now I have got again my 450 MB recovery partition!
    Not satisfied :D I am thinking to move it on my other hard disk...
     
  11. agent268

    agent268 MDL Junior Member

    Feb 20, 2012
    92
    33
    0
    Glad I could help. I added back the create part piece for future users that come across this. Thanks for catching that.