Unsolved
1 Rookie
•
1 Message
0
124
May 24th, 2025 17:19
I accidentally deleted Recovery partition
I accidentally deleted two partitions where I suppose Dell Support assist storage backups. How can I create a new backup?
System is working fine, I just lost the backup.
No Events found!



anne_droid
3 Apprentice
•
1K Posts
0
May 25th, 2025 09:47
Hi
Is the picture after the 2 partitions were deleted?
Please can you confirm the Make Model and OS, along with any configuration details like touch screen, backlit keyboard, SFF or tower etc etc.
To un-delete a partition I would use Linux Mint LIVE, with Gpart, Gparted and TestDisk with the expectation of the deleted partitions being recoverable.
The more misguided may Microsoft......
Sorry about the lousy formatting, it's not my choice...
The Internet reports...
How to Initiate the Contents of a WINRE Partition for Recovery
To correctly set up and enable the Windows Recovery Environment (WinRE) on a dedicated recovery partition, follow these steps. This process is useful if you need to restore or recreate a missing or damaged WinRE partition.
Step-by-Step Instructions
1. Assign a Drive Letter to the Recovery Partition
Open an elevated Command Prompt and use Diskpart:
diskpartlist diskselect disk 0 (replace 0 with your system disk number if different)list partitionselect partition X (replace X with your recovery partition number)assign letter=Rexit2. Create the Required Directory Structure
mkdir R:\Recovery\mkdir R:\Recovery\WindowsRE\3. Copy the WinRE Image File
Obtain
winre.wimfromC:\Windows\System32\Recovery\winre.wim(or extract it from installation media if missing).Copy it to the recovery partition:
copy C:\Windows\System32\Recovery\winre.wim R:\Recovery\WindowsRE\4. Set the Partition Type to Recovery
For UEFI/GPT systems:
diskpartselect disk 0select partition X set id=de94bba4-06d1-4d40-a16a-bfd50179d6ac gpt attributes=0x8000000000000001exitFor BIOS/MBR systems:
diskpartselect disk 0select partition X set id=27 exit5. Configure WinRE Using REAgentC
First, disable WinRE if enabled:
reagentc /disableSet the new WinRE location:
reagentc /setreimage /path R:\Recovery\WindowsREEnable WinRE:
reagentc /enableCheck status:
reagentc /infoYou should see
Windows RE status: Enabledand the correct WinRE path36.6. Remove the Drive Letter from the Recovery Partition
diskpart select disk 0 select partition X remove letter=R exitNotes and Troubleshooting
The recovery partition must be formatted as NTFS26.
If
winre.wimis missing, extract it from your Windows installation media (install.wimorinstall.esdin thesourcesfolder) using DISM6.After setup, you can boot into WinRE by holding Shift while clicking Restart from the Start menu or login screen6.
Summary:
You initiate the contents of a WINRE partition by copying
winre.wimto the correct folder on a dedicated NTFS partition, setting the partition type, configuring the path withreagentc, and enabling WinRE. This ensures the recovery environment is available for system repair and troubleshooting.(edited)