Following on from my previous question ([Can't remove recovery partition](https://superuser.com/questions/1073883/cant-remove-recovery-partition)) J'ai been trying to use Diskpart - with the following results:
Is my disk locked in a permanent way or is this something I can easily address without additional tools?
Disquepart - Can't supprimer a partition sans the force protected parameter set
Re: Disquepart - Can't supprimer a partition sans the force protected parameter set
## Is my disk locked in a permanent way?
Vous devez add the `override` option:
```
delete partition override
```
>
**override**
Enables DiskPart to delete any partition regardless of type. Normally,
DiskPart enables you to delete only known data partitions.
Source [DiskPart Command-Line Options](https://technet.microsoft.com/en-us/library/cc766465%28v=ws.10%29.aspx)
## Comment delete an OEM partition
>
"Cannot delete a protected partition without the force protection parameter set."
This is a warning from Windows that vous devez be doubly sure that
you want to delete this partition.
If you see this error when trying to delete a partition then use:
```
delete partition override
```
Source [Comment delete an OEM partition](http://www.cryer.co.uk/brian/windows/how_to_delete_an_oem_partition.htm)
Vous devez add the `override` option:
```
delete partition override
```
>
**override**
Enables DiskPart to delete any partition regardless of type. Normally,
DiskPart enables you to delete only known data partitions.
Source [DiskPart Command-Line Options](https://technet.microsoft.com/en-us/library/cc766465%28v=ws.10%29.aspx)
## Comment delete an OEM partition
>
"Cannot delete a protected partition without the force protection parameter set."
This is a warning from Windows that vous devez be doubly sure that
you want to delete this partition.
If you see this error when trying to delete a partition then use:
```
delete partition override
```
Source [Comment delete an OEM partition](http://www.cryer.co.uk/brian/windows/how_to_delete_an_oem_partition.htm)