Technology in terms you understand. Sign up for the Confident Computing newsletter for weekly solutions to make your life easier. Click here and get The Ask Leo! Guide to Staying Safe on the Internet — FREE Edition as my thank you for subscribing!

How Do I Convert a GPT Disk to MBR?

The format before the format.

Current partition style won't work? I'll walk you through what that means and two ways to convert between GPT and MBR partition styles.
Converting between GPT and MBR conceptual.
(Image: askleo.com)
Question: While following your instructions in your Macrium Reflect course lesson, “Creating Rescue Media,” I ran into an issue when trying to create the rescue media on a USB stick. When I reached the step to build the emergency disk, I received the message: “Removable USB Flash Drive – Unsupported Disk” and “GPT format not supported.”

I’m somewhat surprised that Macrium Reflect didn’t just re-initialize the disk for you, but I know it’s not the only program that might require MBR over GPT (or perhaps even vice versa).

Let’s look at what those are and a couple of ways to convert between them.

Become a Patron of Ask Leo! and go ad-free!

TL;DR:

Converting MBR

I’ll answer three questions:

  • What are MBR and GPT partition styles?
  • How do I convert from GPT to MBR in Windows?
  • How do I convert from GPT to MBR using the command line?

Terms

Let’s start with some terms, since there’s some ambiguity, or at least some common confusion.

  • Partition style: One of two ways (MBR or GPT) information about what partitions are on a disk and how they’re laid out is stored.
  • Initializing a disk: Creating an initial MBR or GPT data structure indicating the disk is empty.
  • Partition: A portion of a physical disk made available to the operating system. Also referred to as a “volume“. A single physical disk can contain one or more partitions, each treated as a separate disk by the operating system.
  • Partitioning: to create or manage the various volumes present on the disk.
  • Format: One of several ways (NTFS, FAT32, exFAT, and others) that data is tracked and organized within a partition.
  • Formatting: Creating the initial data structure for an empty partition.

MBR versus GPT

MBR, for Master Boot Record, and GPT, for GUID Partition Table (where GUID stands for Globally Unique IDentifier), are two different approaches or “partition styles” for managing the information on a disk that records where the partitions on that disk live and how large they are.

If you’ve ever been instructed to initialize a disk, it’s because no partition style was found.

Disk Initialize dialog from Windows Disk Management.
Disk Initialize dialog in Windows Disk Management. (Screenshot: askleo.com)

You can see that you’re given the choice of which should be used.1

GPT is more common of late, as it supports larger disks than MBR, so it’s not surprising that a random disk — even a USB stick — would come set up to use GPT.

Switching isn’t difficult; it’s just inconsistent.

Using Disk Manager

Right-click on the Start menu and click on Disk Manager.

In the lower pane, right-click on the left-hand information box of the drive in question.

Right clicking on Disk 1.
Right-clicking on Disk 1. Click for larger image. (Screenshot: askleo.com)

You’ll notice a “Convert to MBR Disk” in the pop-up menu, though it’s greyed. All partitions on the drive must be removed before you can convert it. Right-click on each partition, and click on Delete Volume… to remove it.

Removing a partition.
Removing a partition. Click for larger image. (Screenshot: askleo.com)

Note: Removing a partition deletes all data. Make sure there’s nothing here you want to keep.

Once you’ve removed all the partitions, right-click on the left-hand drive information box again, and this time, Convert to MBR Disk should be available.

Covert to MBR Disk option available.
Convert to MBR Disk option is available. Click for larger image. (Screenshot: askleo.com)

Click it to make the conversion.

If it says “Convert to GPT Disk”, then your disk is already in MBR style.

I have encountered scenarios where the option isn’t just greyed but is not present at all. When that happens, we need to resort to the command line.

Using diskpart

Run an administrative command prompt by right-clicking on the Start menu and clicking on the “(Admin)” version of the command processor listed (Command Prompt, Powershell, or Terminal).

Type “diskpart” followed by the enter key. (The enter key is assumed at the end of every command we type from here.)

Running the diskpart command.
Running the diskpart command. (Screenshot: askleo.com)

Next, enter “list disk”.

Dispart list disk command.
Diskpart list disk command. (Screenshot: askleo.com)

Note the disk number for the disk you want to convert, ensuring you identify the correct disk. It should be the same number as in Disk Manager, but be sure to double-check. In our example, it’s disk 1.

Enter “select disk 1” using the disk number you’ve identified.

Next, enter two commands, one after the other: “clean” and then “convert mbr”.

Converting to MBR partition style.
Converting to MBR partition style. Click for larger image. (Screenshot: askleo.com)

Your disk is now MBR partition style.

It also has no partitions. In the case of the original question, that’s fine, as Macrium Reflect should now be able to create the partition(s) it needs. If you’re planning to use the disk in some other way, you’ll want to use Disk Manager to create at least one partition so you can use the disk.

Do this

Needing to convert is rare, but not unheard of. Now you have the tools you need to make it happen.

Subscribe to Confident Computing! Less frustration and more confidence, solutions, answers, and tips in your inbox every week.

Podcast audio

Play

Footnotes & References

1: If you’re ever asked to initialize a disk unexpectedly, understand that doing so will erase everything on the disk. If this is not what you want, do not initialize the disk and troubleshoot why you’re being asked to.

Leave a reply:

Before commenting please:

  • Read the article.
  • Comment on the article.
  • No personal information.
  • No spam.

Comments violating those rules will be removed. Comments that don't add value will be removed, including off-topic or content-free comments, or comments that look even a little bit like spam. All comments containing links and certain keywords will be moderated before publication.

I want comments to be valuable for everyone, including those who come later and take the time to read.