1. Home
  2. Windows Tips
  3. Convert mbr to gpt

How to convert a disk from MBR to GPT on Windows 10

The partition style of a disk determines how files are written, and storage sectors on the disk are managed. It’s a complicated concept, but end-users using Windows 10 rarely have to contend with it since the OS can be installed from and can read/write to drives on both the MBR and the GPT style.

That said, if you have a disk that’s using the MBR style, and you need to convert it to the GPT style, you can do so from Command Prompt.

Convert disk partition style: MBR to GPT

To convert the disk partition style of a disk on Windows 10, make sure you’ve backed up all files on the disk and then follow the steps below.

  1. Delete all partitions on the disk (check out our guide).
  2. Open Command Prompt with admin rights.
  3. Run the following command to activate the disk partition tool.
diskpart
  1. Run the following command to list all the connected disks. Take note of the number assigned to the disk that you want to change the partition style of.
list disk
  1. Select the disk you want to convert from MBR to GPT. Replace the number (no.) with the number of the disk from the previous command.
select disk no.
  1. If you haven’t already, use the following command to delete all partitions on the disk.
clean
  1. Once the partitions have been deleted, you can convert the partition style from MBR to GPT with the following command.
convert gpt

Changing partition style of internal drive

When you try to run the above command on your internal drive, i.e., the one Windows 10 is installed on, you will be told it’s in use, and the action cannot be performed. In order to change the partition style for an internal drive, you need to access it via Command Prompt from outside the Windows 10 desktop.

Before you start

Make sure;

Access Command Prompt

To access Command Prompt follow these steps;

  1. Open the Start Menu.
  2. Click the power button.
  3. Hold down the Shift key and click Restart from the power menu.
  4. When you boot, you will see a blue screen with different boot options. Select Troubleshoot>Advanced Options>Command Prompt.
  5. Run the commands listed in the main section to convert the internal drive to GPT.

Conclusion

Changing the partition style of a drive is simple, but since it does result in all data being removed from the drive, it can be intimidating. As long as you have a backup of everything important, there’s no way this can go wrong. Need to convert a drive from GPT to MBR? We’ve got you covered.