This is copy-pasted from ==> partitionwizard.com
As you know, you are not allowed to remove recovery partition in Disk Management, only a Help option is offered there. Thus, you need to find other methods to remove recovery partition. In this post, you can see a way to delete recovery partition in Windows 7/8/10.
Delete Recovery Partition using Diskpart
Windows provides users a quite useful way to help delete recovery partition, that is to use Diskpart.exe to delete partitions from Diskpart command prompt. Please follow these steps to remove recovery partition.
Let's see how to delete recovery partition Windows 10.
Step 1. Type "diskpart" in the search box, then in the best match results, right-click on "diskpart" and select "Run as administrator".

Step 2. At Diskpart prompt, type the following commands in order, each one should end up with the Enter key:
- Type "list disk" to display all the disks. Please pay attention to the disk number that contains the recovery partition.
- Type "select disk n", in which "n" should be replaced with the correct disk number.
- Type "list partition" to list all the partitions on the selected disk. By viewing the partition label and partition information, you will know which one is the recovery partition to be deleted.
- Type "select partition n" where n should be the partition number of the recovery partition.
- Type "delete partition" to delete the recovery partition.
Attention: While deleting a recovery partition, in most cases we can smoothly finish the deletion. Yet we may come across an error message saying "cannot delete a protected partition without the force protected parameter set" as showing below:

What caused this error?
This error message is likely to appear on GPT disk. If the recovery partition you intend to delete is regarded as protected partition by Windows, then deletion is prevented.
How can we solve it?
At this time, we should type "gpt attributes=0x8000000000000000" and then repeat "delete partition". Then the recovery partition should be deleted.
Although Diskpart is able to delete recovery partition, without a clear interface to display the details, there are chances that you may delete a wrong partition. For those who are unfamiliar with Diskpart, obviously this is not the best choice.
(Do it at your own risk !)
Leave a Comment