How to Delete OEM Recovery Partition in Windows 11
OEM recovery partitions often remain locked on your drive, consuming valuable storage space that the standard Windows 11 Disk Management tool cannot modify or delete. This guide outlines how to safely bypass these system restrictions using Windows 11’s built-in Diskpart utility to remove stubborn OEM partitions and merge the unallocated space back into your primary drive.
Why Standard Tools Fail
Windows 11 flags OEM (Original Equipment Manufacturer) partitions as protected to prevent accidental deletion of factory restore files. Consequently, right-clicking these partitions in Disk Management results in a grayed-out “Delete Volume” option or an error stating the action is not supported. Using the command-line Diskpart tool with an override parameter is the standard method to remove them.
Important Considerations Before Deletion
- Data Safety: Deleting a partition is permanent.
Ensure you do not delete your primary system partition (
C:) or the EFI System Partition. - Factory Reset Capability: Removing the OEM partition deletes the manufacturer-specific recovery image. You will still be able to reinstall Windows 11 using official media, but factory-bundled software will be lost.
Step-by-Step Guide: Deleting the Partition via Diskpart
- Open Command Prompt as Administrator
- Press
Windows Key + S, typecmd, right-click Command Prompt, and select Run as administrator.
- Press
- Launch the Diskpart Utility
- Type
diskpartand press Enter.
- Type
- Identify the Disk
- Type
list diskand press Enter. - Note the disk number containing the OEM recovery partition (usually
Disk 0).
- Type
- Select the Disk
- Type
select disk X(replaceXwith your actual disk number) and press Enter.
- Type
- Identify the Recovery Partition
- Type
list partitionand press Enter. - Locate the partition labeled “Recovery” or identified as “OEM”. Note its partition number.
- Type
- Select the Partition
- Type
select partition Y(replaceYwith the specific partition number) and press Enter.
- Type
- Force Delete the Partition
Type the following command and press Enter:
delete partition overrideThe
overrideparameter bypasses the protection flag and removes the partition immediately.
- Exit Diskpart
- Type
exitand press Enter to close the utility.
- Type
Reclaiming the Unallocated Space
Once the partition is deleted, the space becomes “Unallocated.” You can allocate it using Disk Management:
- Right-click the Start Menu and select Disk Management.
- If the unallocated space is directly adjacent (to the right) of your
C:drive, right-clickC:, select Extend Volume, and follow the on-screen wizard. - If the space is not adjacent or you prefer a separate drive, right-click the unallocated space and choose New Simple Volume to assign it a new drive letter.