Windows : create a missing recovery partition

When cloning a large hard disk to a smaller one, I lost the recovery partition. So far not bad, Windows works without recovery partition, but in case of an error the partition helps to get the PC up and running again. To summarize, here's how it works with the recovery partition: As long as the partition is still there, it can be deactivated and written to a file. If the partition gets lost unexpectedly, it can be recovered from the Windows setup media. This post is also available as a video, see: Youtube video.

Missing recovery partition

A look into the Disk Management, shows the partitions, Disk 0 has only one EFI system partition and the C drive:

The recovery partition can be loaded via Restore / Advanced Startup and "Restart now", among others:

If the recovery partition is missing, only the following 2 options are displayed in the Advanced options - Troubleshoot menu:

WinRe.wim vs. recovery partition.

If the recovery partition is not present, the content is normally located in the file: c:\windows\system32\Recovery\WinRe.wim.

The command: "reagentc /enable" in the command prompt uses the file WinRe.wim and fills the recovery partition with it. Conversely, the contents of the recovery partition can be written from the partition to the file with the command: "reagentc /disable". If neither the recovery partition nor the WinRe.wim file exists, the file can be copied from the Windows setup media:

Get the recovery partition from the Windows setup DVD.

Unfortunately, the Winre.wim file is not located directly on the setup media, but hidden within the "install.wim" file. To load the contents of the file, we can use the dism command and the mount-wim parameter:

c:\> mkdir c:\temp
c:\> dism /mount-wim /wimfile:"d:\sources\install.wim" /index:1 /mountdir:"c:\temp" /readonly

After successfully loading the file, the Winre.wim is located in the specified c:\temp folder under c:\temp\Windows\System32\Recovery.

The file can then be copied to the Windows folder: C:\windows\system32\Recovery\winre.wim

To unload the wim file we should use the following command after copying:

c:\> DISM /unmount-Wim /MountDir:"c:\temp" /discard

Creating the recovery partition

If the winre.wim file exists, the recovery partition can be restored as follows:

diskpart
DISKPART> list disk
DISKPART> select disk (DiskNumber from list disk)
DISKPART> list partition
DISKPART> select partition (Partitions Number from Drive c:)
DISKPART> shrink desired=700
DISKPART> create partition primary
DISKPART> format quick fs=ntfs label="winRE"
DISKPART> set id=de94bba4-06d1-4d40-a16a-bfd50179d6ac
DISKPART> exit
C:\WINDOWS\system32> reagentc /enable
REAGENTC.EXE: Operation Successful.

Set id changes the type of the partition to "Recovery". (Recovery-Partitions have this ID: de94bba4-06d1-4d40-a16a-bfd50179d6ac)

Start recovery partition

When starting the recovery partition via "Recovery", "Advanced startup", the reboot takes a little longer and the menu contains additional options:

FAQ

What is a recovery partition used for in Windows?

The recovery partition allows repairing or restoring the system in case of serious problems, for example, when the computer stops booting.

Can I delete the recovery partition to save space?

The recovery partition is not needed for normal operation and could simply be deleted. Please create a backup before the deletion. As an alternative to the recovery partition, the PC can be repaired or booted from a Windows boot media: DVD or USB stick in case of problems.

Can the recovery partition be moved?

With Windows tools, the recovery partition can be copied to a folder via the reagentc command and restored from there. This makes it possible to delete the recovery partition and create a new one at a different location. Alternatively, certain tools, such as "gparted", can be used to move the partitions.

Video

Conclusion

The recovery partition can be restored using the "reagentc" command. Alternatively, for a repair operation, the PC can also be booted via a Windows setup medium and repaired in case of problems, see: Windows 10 / 11 - Download Installation - DVD or USB Boot.

 

positive Bewertung({{pro_count}})
Rate Post:
{{percentage}} % positive
negative Bewertung({{con_count}})

THANK YOU for your review!

Updated: 2023-03-01 von Bernhard | Übersetzung Deutsch |🔔


Top articles in this section


the 4 best tools to compare text files

Anyone who frequently creates scripts or analyzes log files and handles different versions can compare them very quickly with the help of the right editor. 


Windows 11 22H2 (Build: 22621.1413) : show current version

Build means the kernel version of Windows. How current the Windows 10 or Windows 11 installation is, can be seen by the build number used.


Install Grub setup and set up Linux bootloader

Ubuntu and most other Linux-based operating systems use GRUB2 as a boot loader. In GRUB, settings such as the default operating system or the use of a background image can be set. In addition, GRUB can be configured to load multiple operating systems: Dualboot.


Questions / Comments


(sorted by rating / date) [all comments(newest first)]

✍Jeff
2023-01-04 03:25
Hello,

Thank you for the clear step-by-step instructions. I do have one question: In creating the recovery partition, you use "create partition primary" which makes a partition "NTFS  Basic Data Partition." But other recovery partitions are simply "recovery partition." Will this new partition still be recognized as a recovery partition upon advanced boot?

Thanks!

Jeff
✍Bernhard
comment date 04.01.2023 08:09
Hello,

yes it will be recognized, I tested it using Advanced startup.

created by Bernhard

By continuing to browse the site, you agree to our use of cookies. More Details