4

I recently bought a 3TB internal HDD, intended to be used as a backup drive to encompass all of my data. After installing the drive into my system, I started to use Windows' command-line diskpart tool to initialise it, as part of which it needed converting to a GPT disk. Eventually after some experimenting, I realised that doing so, using:

convert GPT

...automatically creates a 128MB reserved partition on the disk:

enter image description here

Why does diskpart create this partition, and if I'm planning to use this disk purely as a data drive (as opposed to a boot drive), can I safely delete the reserved partition to create one primary partition encompassing the entire drive?

Hashim Aziz
  • 13,835

3 Answers3

3

"A Microsoft Reserved Partition is only created when a drive formatted in a Globally Unique IDentifier or GUID partition table (GPT) format and when the BIOS is set for Unified Extensible Firmware Interface (UEFI)."

Source

Giacomo1968
  • 58,727
Moab
  • 58,769
1

This is not an answer to the question, but valuable information for anyone coming across this and wanting to know how to delete the partition, which is protected by default.

To delete the 128MB reserved partition

Type the following commands one at a time in the command-line:

diskpart

list partition

select partition 1

delete partition override

To create a new primary partition encompassing the entire drive and mount it:

create partition primary

format fs=ntfs quick1

assign letter=D2


1 Replace ntfs with the filesystem you want to format the disk with, and remove quick if you want to perform a full format
2 Replace D with the volume label that you want the drive to be mounted on, or simply use assign to mount the drive with a random unused label

Hashim Aziz
  • 13,835
0

Are GPT reserved and EFI system partitions important? says Windows just allocates an empty, unused, partition just in case it might need it for something later on. It's safe to delete, I just did for all my drives.