Skip to main content
WindowsWindows 10

Managing System Reserved Partition in Windows 10

By May 3, 2021January 12th, 2022No Comments

During a clean OS install, Windows Installer creates a special System Reserved Partition (SRP) on the MBR disk partition table. This is a hidden partition with the NTFS file system, which is not assigned a drive letter by default, and doesn’t appear in File Explorer (most users don’t even know about the existence of this service SRP partition). In Windows 7/Windows Server 2008R2 the size of the System Reserved partition is 100 MB, in Windows 8.1/Windows Server 2012 R2 it is 350 MB, and in Windows 10/Windows Server 2016 it is increased to 500 MB.

In this post, we will figure out what the System Reserved partition is used for, whether it can be deleted and how to restore it if it has been deleted or damaged.

The System Reserved Partition in Windows 10

First, let’s see where the System Reserved partition is located and how to view its contents. Run the Computer Management mmc snap-in and select Storage -> Disk management. As you can see, in Windows 10, the 500MB System Reserved partition is in front of the system partition (C:\) where Windows is installed.

The following volume attributes are assigned to the System Reserved Partition: Primary partitionActive and System.

hidden system reserved partition on windows10

The System Reserved partition is only present on BIOS computers or UEFI devices that have the Legacy Compatibility Support Module (CSM) enabled. The MBR (Master Boot Record) partition table is used on the system disk of such computers. On computers with UEFI in native mode and GPT partition table, there is no SRP partition (the EFI partition is used instead).

By default, the System Reserved partition is not assigned a drive letter. You can set the drive letter through the Disk Management Console (diskmgmt.msc) or using this PowerShell command:

Get-Partition -DiskNumber 0 -PartitionNumber 1|Set-Partition -NewDriveLetter R

This is how the contents of the System Reserved volume look like (you need to allow showing hidden and system files in File Explorer):

content of system reserved partition in windows 10

If you are installing Windows to a disk with existing partitions, the installer doesn’t create a separate 500 Mb System Reserved partition. In this case the Boot Manager bootloader files are placed on the same volume where Windows is installed.

What is the System Reserved Partition Used for on Windows 10?

In earlier versions of Windows, boot files were stored on the partition with the installed OS. Starting with Windows 7, MSFT developers added a separate hidden System Reserved partition to store bootloader files. This solution helps to protect the bootloader files from users and improve the stability of Windows.

What is stored in the System Reserved partition?

  • Windows bootloader (bootmgr), and a file with the bootloader configuration BCD (Boot Configuration Data);Bootmgr replaced the old NTLDR bootloader in newer versions of Windows.
  • Service data of the BitLocker encryption subsystem (if used);
  • Windows Recovery Environment (WinRE) files that can be used to troubleshoot various boot problems;
  • System Volume Information folder for system recovery points metadata;
  • BOOTNXT – the file is used to boot Windows from USB flash drives (for example, for Windows To Go);
  • BAK – a backup of the boot sector used on MBR disks.

Can You Delete the System Reserved Partition on Windows 10?

You shouldn’t delete the System Reserved partition without a good reason, and even more so to save disk space (500 MB is not so much). Without this partition, your Windows won’t be able to boot, since the boot partition with the bootloader configuration is missing. An error message may appear: “Operating system not found”.

boot error: Operating System not found

or

File: \boot\BCD
Status: 0xc00000f
The Boot Configuration Data for you PC is missing or contains errors.

In this case, you will have to manually restore the Windows bootloader and place it on the system drive C: (described below).

How to Create a System Reserved Partition Manually in Windows 10?

If you deleted the System Reserved partition (or it is initially missing) and want to restore it, use the following steps.

Use the diskpart tool to shrink the Windows partition by 500 MB (in this example, we assume Windows is installed on the partition 1):

diskpart
list volume
select volume 1
shrink desired=500

Create a new 500 MB NTFS partition:

create partition primary
format fs=ntfs
active
assign letter R
exit

Now you can place the Windows bootloader files on the new partition:

bcdboot C:\windows /s R:
bootrec /fixmbr
bootrec /fixboot
bootrec /rebuildbcd

However, in most cases, it is easier to move the bootmgr configuration to the Windows system partition (this is described in the next section of this post).

Windows Can’t Boot after Accidentally Deleted System Reserved Partition

If other partitions prevent you from shrinking/extending the Windows volume, you can restore the bootloader configuration and place it on the partition where Windows is installed. These steps will help you fix Windows boot after deleting a System Reserved partition.

You can make sure that the System Reserved partition is missing by booting from any Windows boot/installation media (USB flash drive or DVD). (In our case, it was the Windows Server 2012 R2 install media).

On the installation screen, press Shift+F10 to open a command prompt. Run diskpart and list the volumes:

list volume

list volume

As you can see, the System Reserved partition is missing, and of course, the Windows cannot boot from this disk.

In this case, to restore your system, you need to recreate the bootloader entries. In order to not create the separate 500 MB System Reserved partition, the bootmgr bootloader files can be re-created on a system drive C:\. To do it, run the following commands in WinPE command prompt. Place the boot environment files on drive C:\ and specify the path to Windows directory:

bcdboot c:\windows /s c:

bcdboot c:\windows /s c: Boot files successfully created

If successful, the command will return Boot files successfully created.

Now you need to overwrite the boot sector:

bootsect.exe /nt60 All /force

If the error “Element not found” appears, try to make system partition active using diskpart (described in the next step).

Then make the C:\ partition active. To do it, execute the following commands (you disk and partition numbers may differ, be attentive):

diskpart
list disk
select disk 0
list partition
select partition 1
active

You should see the message “DiskPart marked the current partition as active

exit

diskpart make active partition

Then run these commands one by one:

bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd

The third command will scan all disks and try to find installed Windows copies (Scanning all disk for Windows installations). In our example, the OS has been found in C:\Windows folder. The system will ask to add these Windows entries to the boot list (Add installation to boot list?). Confirm it(Y).

bootrec /fixboot

Restart your computer and make sure that Windows is booted correctly. Make sure that bootmgr file is present in the root of the system drive C:\.

bootmgr on drive c:\

The steps for manually repairing the bootloader configuration on computers with the UEFI architecture are slightly different and described in detail in the post How to repair the EFI bootloader.

This manual also may be used to move Windows Bootloader configuration to different drive if the System Reserved partition is removed deliberately, when you want the system to be completely located on one partition (it is convenient from the point of view of some backup and disk management tools). A complete guide on how to rebuild the BCD and MBR configuration is available in this post.

“Couldn’t Update the System Reserved Partition” on Windows 10

When upgrading from Windows 7/8.1 to Windows 10 (or when upgrading to new Windows 10 build), you may receive 0xc1900104 or 0x800f0922 errors:

Windows 10 couldn't be installed
We couldn't update the system reserved partition.
windows 10 upgrade error: We couldn't update the system reserved partition

This is because the System Reserved partition is smaller in previous Windows versions than in Windows 10. And if the SRP is full and there is not enough free space (at least 15 MB) to place the Windows bootloader system files, you will get this error.

In this case, Microsoft recommends deleting the font files from the R:\Boot\Fonts directory to free up space on the System Reserved partition(https://support.microsoft.com/en-us/help/3086249/we-couldn-t-update-system-reserved-partition-error-installing-windows). Or you can try to expand the System Reserved partition using any third party partition manager tool on a bootable USB stick.

Leave a Reply