Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / Managing System Reserved Partition in Windows 10

March 11, 2024

Managing System Reserved Partition in Windows 10

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 article, 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.

Contents:
  • The System Reserved Partition in Windows 10
  • What is the System Reserved Partition Used for on Windows 10?
  • Can You Delete the System Reserved Partition on Windows 10?
  • How to Create a System Reserved Partition Manually in Windows 10?
  • Windows Can’t Boot after Accidentally Deleted System Reserved Partition
  • “Couldn’t Update the System Reserved Partition” on Windows 10

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 partition, Active 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 the 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

Note. 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 may appears: “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 the article).

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 not to 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

Tip. 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

Tip. 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:\

Tip. The steps for manually repairing the bootloader configuration on computers with the UEFI architecture are slightly different and described in detail in the article 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 article.

“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.

 

5 comments
5
Facebook Twitter Google + Pinterest
Windows 10Windows Server 2019
previous post
VMWare Error: Unable to Access a File Since It Is Locked
next post
How to Check or Update Java Version in Windows with PowerShell?

Related Reading

Fix: The Computer Restarted Unexpectedly or Encountered an...

May 16, 2024

PowerShell: Get Folder Size on Windows

April 2, 2024

Fixing “Winload.efi is Missing or Contains Errors” in...

March 16, 2024

How to Download Offline Installer (APPX/MSIX) for Microsoft...

March 12, 2024

How to Clean Up System Volume Information Folder...

March 17, 2024

Protecting Remote Desktop (RDP) Host from Brute Force...

February 5, 2024

Fix: Photos App in Windows 10 Opens Extremely...

April 19, 2023

How to Refresh (Update) Group Policy Settings on...

August 13, 2024

5 comments

Ryan June 11, 2017 - 9:28 am

The link to the EFI Boot Repair article is incorrect. Keep up the good work.

Reply
admin June 15, 2017 - 6:27 am

Thanks!

Reply
russell June 18, 2017 - 9:15 am

Make sure to make a back-up first!!

I tried this, but it turned out very badly. My situation was: from a source computer with W7 and 2 partitions (system reserved and OS) I cloned the OS partition to a new hard without the system reserved partition). Then I followed this manual and after the step “bootrec /fixmbr”, the partition became corrupted and diskpart showed a RAW partition (instead of the NTFS partition). I haven’t been able to fix this with other partitioning tools, so my data is gone.

Just a warning to anybody, first make a back-up before you try this !

Reply
Nikhil Gala September 29, 2018 - 8:01 am

Thank you for the simple guide. I had intentionally deleted system reserved partition and then had planned to use System Recovery Option from my bootable usb. But somehow usb was installing fresh windows only and not showing any recovery options. But this solution saved me. Thanks again 🙂

Reply
Brady June 14, 2019 - 8:27 pm

After 5 days of trying to recover the boot partition I deleted, or create a new boot partition, stupidly messed up the Legacy Boot partition while trying to recover the deleted partition – this is what I did to fix my computer.

The MediaRecoveryTool.exe program I downloaded from Microsoft’s website was not reputable. At first it worked, this is when I stupidly deleted the boot partition and the MSR partition (or whatever it’s called). I needed to reboot for some reason after deleting the partitions I should not have. When I turned my laptop back on the Bootable USB I made with the MediaRecoveryTool.exe no longer worked. After 5 days of trying different failed methods I finally downloaded the W10 Rar File from Microsoft. I extracted W10 onto my USB. Then I used Rufus to set up the USB to be Bootable. This USB worked for the UEFI Boot and I was able to finally reinstall W10 after stupidly deleting the Boot partition and MSR partition.

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Download Offline Installer (APPX/MSIX) for Microsoft Store App
  • Fix: Windows Cannot Connect to a Shared Printer
  • How to Disable UAC Prompt for Specific Applications in Windows
  • Fix: The Computer Restarted Unexpectedly or Encountered an Unexpected Error on Windows
  • How to Clean Up System Volume Information Folder on Windows
  • Fixing “Winload.efi is Missing or Contains Errors” in Windows 10
  • How to Enable Windows Auto Login without a Password
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top