I have a 2nd drive which has an EFI System Partition of 750MB and an unused partition of 118GB. I want to remove the EFI System Partition and reformat the entire drive. But when I click around there is no option to remove the EFI. Is there a way?
Thanks,
Eddy
11 Answer
Assuming you are on Windows and are asking about DiskMgmt.msc:
- Run
DISKPART, which is a command-line tool which uses the same Windows volume manager. - Use
list diskandselect disk <number>to choose the disk. - Use
detail diskandlist partjust to make sure it's the correct disk. - If you want to delete all partitions at once, use
clean. - If you want to delete just the specific EFI partition:
- First choose it with
list partandsel part <number>. - Double-check using
detail part. - Delete it with
del part override.
- First choose it with
Any third-party partition editor will be able to remove the EFI system partition as well.
Note: Make sure the system isn't actually using this EFI system partition to boot your OS. Have a Windows install USB handy just in case.
4