How to Convert MBR to GPT using Diskpart

carolinebennett

Reputable
Oct 15, 2015
31
0
4,560
It is inevitable that GPT (GUID Partition Table) is way better than MBR (Master Boot Record). GPT and MBR are two different standards which define the layout of the partition table on the hard disk. GPT has the following advantages over MBR:

  • GPT drive enables you to create 128 partitions whereas MBR allows you to have four primary partitions.
    GPT support disk larger than 2 terabytes whereas MBR supports upto 2 TB hard disk.
    Unlike MBR, GPT stores partitioning and boot data in multiple location so as to recover data if it gets corrupted.
Steps to Convert MBR to GPT using Diskpart

Note: You need to backup all the data before starting the conversion process as this method cleans the disk which in turn erase all files and folders.

Step 1. Open an elevated Command Prompt then open Diskpart Windows by typing the below command
C:\Windows\system32\diskpart
mbr1.png

Step 2. Type list disk, to see all the available disks on the system
DISKPART> list disk
mbr2.png

Step 3. Now select the disk for applying MBR to GPT conversion. Type select disk <disk number>
DISKPART> select disk 1
mbr3.png

Step 4. Once the disk has been selected, Type clean. This will delete all volumes/partitions.
DISKPART> clean
mbr4.png

Step 5. In the last step, type convert GPT.
DISKPART> convert gpt
mbr5.png

Now to exit command prompt, type exit. This is all about how to convert MBR to GPT using Diskpart.