---
title: "How to Convert MBR to GPT and GPT to MBR [Step-by-Step]"
description: "Have you purchased a new hard drive but cannot access all of its disk space? Luckily for you, this article will teach you how to convert MBR to GPT."
canonical: "https://adamtheautomator.com/convert-mbr-to-gpt/"
---

# How to Convert MBR to GPT and GPT to MBR [Step-by-Step]

> Have you purchased a new hard drive but cannot access all of its disk space? Luckily for you, this article will teach you how to convert MBR to GPT.

Source: https://adamtheautomator.com/convert-mbr-to-gpt/

---

ATA Learning

Tap to hide

[

ATA Learning

](/)

*   [Home](/)
*   [Tutorials](/tutorials/)
*   [Instructors](/author/)
*   [Advertising](/advertising/)
*   [Recommended Resources](/resources/)
*   [About Adam](/about-adam/)

Search for:  

*   [](https://twitter.com/adbertram)
*   [](https://github.com/Adam-the-Automator)
*   [](https://www.linkedin.com/company/adam-the-automator-llc)
*   [](/feed/)

![How to Convert MBR to GPT and GPT to MBR \[Step-by-Step\]](https://adamtheautomator.com/wp-content/uploads/2021/05/How-to-Convert-MBR-to-GPT-and-GPT-to-MBR-Step-by-Step.jpg)

# How to Convert MBR to GPT and GPT to MBR \[Step-by-Step\]

[![](https://secure.gravatar.com/avatar/6b2192cfd275e1506ff2901563cba75d8c88d5223c34e30d404b54de80b2fa5c?s=192&d=mm&r=g)Shahzaib Kamal](https://adamtheautomator.com/author/shahzaib-kamal/)12 May 20215 min. read

Categories: [IT Ops](/category/it-ops/)

Tags:[Disk Management](/tag/disk-management/)[Windows Client](/tag/windows-client/)[windows server](/tag/windows-server/)

Table of Contents

*   [Prerequisites](#h-prerequisites)
*   [What Is a Partition Table Scheme?](#h-what-is-a-partition-table-scheme)
*   [Identifying Whether Your Drive Is MBR or GPT?](#h-identifying-whether-your-drive-is-mbr-or-gpt)
*   [Converting MBR to GPT in the GUI](#h-converting-mbr-to-gpt-in-the-gui)
*   [Converting MBR to GPT via Diskpart](#h-converting-mbr-to-gpt-via-diskpart)
*   [Converting MBR to GPT using MBR2GPT](#h-converting-mbr-to-gpt-using-mbr2gpt)
*   [BIOS to EFI Using Windows settings](#h-bios-to-efi-using-windows-settings)
*   [Conclusion](#h-conclusion)

Have you purchased a new hard drive but cannot access all of its disk space? Is it limited to only 2TB? Maybe you have a complex operating system installation and need to divide your hard drive into more than four active partitions? You probably need to convert MBR to GPT on your disk.

Not a reader? Watch this related video tutorial!

**_Not seeing the video? Make sure your ad blocker is disabled._**

In this tutorial, you will learn the difference between MBR & GPT partition table schemes and how to convert MBR to GPT. You’ll also learn how to take the next step to actually get Windows to recognize that GPT disk by switching your [BIOS](https://www.computerhope.com/jargon/b/bios.htm) to [UEFI](https://wiki.restarters.net/UEFI_and_GPT#:~:text=than%20MBR%20allows.-,Introduction%20to%20UEFI,required%20for%20booting%20the%20computer).

## Prerequisites

*   A Windows 10 PC. This tutorial will use Windows 10 v20H2.
*   An MBR-formatted storage volume.
*   An account in the local administrators’ group – Some of the tasks you’ll perform will require elevation of privileges.

## What Is a Partition Table Scheme?

A partition table forms a low-level structure at the [firmware](https://en.wikipedia.org/wiki/Firmware) level in your hard drive. The storage the hard drives to then has to be presented to an operating system before a disk can be formatted and made ready for data.

By default, every hard drive has at least one partition table scheme called Master Boot Record (MBR), but now there’s a new partition table scheme called GPT (GUID Partition Table) with updated and unique features.

Related:[Your Guide to Managing Directories and Files in Linux \[Step by Step\]](https://adamtheautomator.com/linux-directory-commands/)

## Identifying Whether Your Drive Is MBR or GPT?

Before making any changes to your hard drive, you first need to know which partition table scheme you’re using. So let’s start this tutorial by first covering how to identify which type is already in use.

1\. Open the [Disk Management tool](https://www.lifewire.com/how-to-open-disk-management-2626080). You should see a list of all partitions currently set up that Windows recognizes.

2\. Right click on **Disk 0** and select **Properties** to open the **volume** window.

> _If you have multiple hard drives attached, you will see all of them here as Disk 0, Disk 1, Disk 2, etc._

![Open Disk Management to view the disk properties](https://adamtheautomator.com/wp-content/uploads/2021/05/2021-05-10_21_17_22-Window.png)

Open Disk Management to view the disk properties

3\. Click on the **Volume** tab. Here you’ll see the **Partition style**. The tutorial’s example volume below has a **Master Boot Record (MBR)** partition style which indicates the partition table scheme.

![Review the Partition Style in the disk properties window](https://adamtheautomator.com/wp-content/uploads/2021/05/2021-05-10_22_40_20-Window.png)

Review the Partition Style in the disk properties window

> _There are only two possible options for Partition style, GUID Partition Table (GPT) or Master Boot Record (MBR)._

## Converting MBR to GPT in the GUI

Now that you have identified which partition table scheme you have, let’s now go over how to convert an MBR partition scheme to GPT via the Disk Management GUI.

With the Disk Management GUI, to convert MBR to GPT is a single action. Right click on the disk you’d like to convert and click on **Convert to GPT Disk.**

> _You can only convert a disk from MBR to GPT that has no data stored on it or is encrypted by BitLocker with Bitlocker active. You’ll see later in the command-line sections how you can get around this limitation._

![Convert to GPT Disk in Disk Management](https://adamtheautomator.com/wp-content/uploads/2021/05/2021_05_10_22_56_55_Window.png)

Convert to GPT Disk in Disk Management

## Converting MBR to GPT via Diskpart

If the GUI isn’t your thing or you’d like to implement an MBR to GPT conversion in a script perhaps, the command line is your friend. Let’s start out the command line how-tos by covering how to perform the conversion with the [Diskpart tool](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/diskpart).

1\. Open a command prompt as administrator.

2\. Type `diskpart` to open the command-line utility. You’ll be moved into the interactive Diskpart menu. You’ll notice this because the prompt changes to **DISKPART>**.

![Open diskpart from the command line](https://adamtheautomator.com/wp-content/uploads/2021/05/2021-05-10_21_50_25-Window.png)

Open diskpart from the command line

3\. Enter the command `list disk` to display all the disks attached to the PC. Note the asterisk in the output column labeled `Gpt`. This asterisk indicates that the disk is already GPT-formatted.

![diskpart - list disk command](https://adamtheautomator.com/wp-content/uploads/2021/05/2021-05-10_21_58_52-Window.png)

diskpart – list disk command

4\. Type `select disk 1` to tell diskpart you’d like to perform an action on a disk.

![diskpart - select disk command](https://adamtheautomator.com/wp-content/uploads/2021/05/2021-05-10_22_01_06-Window.png)

diskpart – select disk command

5\. Now, type `convert gpt` to convert the MBR partition table scheme into GPT partition table scheme. If all goes well, you should see a successful message.

![diskpart - convert to gpt](https://adamtheautomator.com/wp-content/uploads/2021/05/2021-05-10_22_04_52-Window.png)

diskpart – convert to gpt

6\. Type `exit` to safely close the diskpart utility.

Related: [How to Use the Windows File Recovery Tool in Windows 10](https://adamtheautomator.com/windows-file-recovery/)

## Converting MBR to GPT using MBR2GPT

Next up in the command-line lineup for performing partition scheme conversion is the MBT2GPT utility! This innocent-looking utility can punch above its weight when it comes to converting partition table schemes. It’s secret weapon? It converts the partition table without damaging the data that is already on the disk.

![mbr2gpt available commands](https://adamtheautomator.com/wp-content/uploads/2021/05/2021-05-10_22_29_48-Window.png)

mbr2gpt available commands

> _You can also run MBR2GPT via [Windows Preinstallation Environment (WinPE)](https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-intro?view=windows-11)._

To use the MBR2GPT utility to convert a disk:

1\. Open [Windows PowerShell as an administrator](https://adamtheautomator.com/powershell-run-as-administrator/).

2\. Find the disk number to convert. Find the disk number using the Disk Management GUI or the diskpart utility as shown earlier.

> _This command gives you the option to validate whether the operation is likely to succeed before committing._

3\. Run the conversion command but run validation conversion first. The command below _should_ convert the disk number 0 to GPT using the `/allowFullOS` switch to run from a full Windows environment. By default, MBR2GPT runs in WinPE.

Since the tutorial used the `/validate` switch, MBR2GPT performs a scan of the disk to ensure the conversion is possible without actually making any changes.

```powershell
mbr2gpt /validate /disk: 0 /allowFullOS
```

Once you’ve confirmed the conversion can take place, now remove the `/validate` switch to perform the conversion for real. You can see below MBR2GPT takes care of all existing partitions and cleanly performs the conversion.

```powershell
mbr2gpt /convert /disk: 0 /allowFullOS
```

![mbr2gpt convert MBR to GPT](https://adamtheautomator.com/wp-content/uploads/2021/05/pic1.jpg)

mbr2gpt convert MBR to GPT

## BIOS to EFI Using Windows settings

Even though you now have a GPT disk, Windows cannot take advantage of it. To allow Windows to use a GPT disk, you must “upgrade” your computer’s BIOS to UEFI.

> _This process will change your PC’s firmware from BIOS to UEFI, be careful. Whilst this process is reversible, it does carry some risk. Always ensure that you have an offline backup of any important data. This change alters the system’s firmware settings which, if not performed correctly, can cause data loss._

1\. Open the **Update & Security** applet by clicking on **Start** —> **Settings** —> **Update & Security**.

2\. In the **Update & Security** applet, click on **Recovery** to access the Advanced Recovery Options screen.

![Control Panel - Windows Update & Security window](https://adamtheautomator.com/wp-content/uploads/2021/05/pic4.png)

Control Panel – Windows Update & Security window

3\. Click the **Restart Now** button to restart the PC into safe mode. Windows 10 will immediately restart.

![Control Panel - Recovery window](https://adamtheautomator.com/wp-content/uploads/2021/05/pic5.png)

Control Panel – Recovery window

4\. After a reboot, you’ll enter safe mode. From here, click on **Troubleshoot**.

![Menu - Start troubleshooting](https://adamtheautomator.com/wp-content/uploads/2021/05/pic6.png)

Menu – Start troubleshooting

5\. In the **Troubleshoot** window, click on **Advanced options**.

![Menu - Advanced Options](https://adamtheautomator.com/wp-content/uploads/2021/05/pic7.png)

Menu – Advanced Options

6\. Now, click on **UEFI Firmware settings** in the **Advanced options** window.

![Menu - UEFI Firmware Settings](https://adamtheautomator.com/wp-content/uploads/2021/05/pic8.jpg)

Menu – UEFI Firmware Settings

7\. On the **UEFI Firmware Settings** screen, click on the **Restart** button to restart the computer and start the firmware change.

![Menu - UEFI Firmware Settings window ](https://adamtheautomator.com/wp-content/uploads/2021/05/pic9.jpg)

Menu – UEFI Firmware Settings window

Once complete, your PC will then boot into Windows again and you will have all of the benefits that come with UEFI such as faster start-up, shutdown, sleep, and resume. You’ll also get the benefit of [Secure Boot](https://docs.microsoft.com/en-us/windows-hardware/design/device-experiences/oem-secure-boot), [Device Guard](https://techcommunity.microsoft.com/t5/iis-support-blog/windows-10-device-guard-and-credential-guard-demystified/ba-p/376419), and [Credential Guard](https://www.thewindowsclub.com/credential-guard-windows-10).

## Conclusion

This tutorial has taken you from using 1970’s technology to the 21st century by converting your MBR disks to GPT and upgrading your legacy BIOS to modern UEFI. You’ve learned three different ways to convert your hard disks to a modern standard that’ll satisfy even the most demanding of you out there.

So now that your PC is running the latest and greatest technology, how do you plan on using your newfound knowledge?

Share this article

[Share on X](https://twitter.com/intent/tweet?url=https%3A%2F%2Fadamtheautomator.com%2Fconvert-mbr-to-gpt%2F&text=How%20to%20Convert%20MBR%20to%20GPT%20and%20GPT%20to%20MBR%20%5BStep-by-Step%5D)[Share on Facebook](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fadamtheautomator.com%2Fconvert-mbr-to-gpt%2F)[Share on LinkedIn](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fadamtheautomator.com%2Fconvert-mbr-to-gpt%2F)

## Related Posts

![](https://adamtheautomator.com/wp-content/uploads/2021/05/Wrangling-NetBIOS-With-the-nbtstat-Utility.jpg)

### [Wrangling NetBIOS With the nbtstat Utility](/nbtstat/)

Do you need to retrieve NetBIOS statistics to help you analyze and troubleshoot name resolution problems? The nbtstat command line tool can you do just that. Learn how to use nbtstat and its many switches in this tutorial.

![](https://adamtheautomator.com/wp-content/uploads/2021/04/How-to-Connect-to-Network-Drives-on-the-Command-Line-with-Net-Use.jpg)

### [How to Connect to Network Drives on the Command Line with Net Use](/net-use/)

If you need to map a network drive or connect to network device over the SMB protocol, the net use command may be for you.

![](https://adamtheautomator.com/wp-content/uploads/2026/06/26995-troubleshoot-dns-issues-powershell-codex.webp)

### [Troubleshoot DNS Issues with PowerShell](/troubleshoot-dns-issues-powershell/)

Troubleshoot DNS issues with PowerShell by testing name resolution, DNS client settings, cache entries, and network connectivity in a repeatable workflow.

## Categories

*   [IT Ops](/category/it-ops/)
*   [Cloud](/category/cloud/)
*   [DevOps](/category/devops/)
*   [Home Ops](/category/home-ops/)
*   [Information Security](/category/infosec/)
*   [Software Development](/category/software-development/)

## Site

*   [Home](/)
*   [Tutorials](/tutorials/)
*   [Instructors](/author/)
*   [Advertising](/advertising/)
*   [Recommended Resources](/resources/)
*   [About Adam](/about-adam/)

Copyright 2026© ATA Learning | [Privacy Policy](/privacy/)
