How to Convert Disk to MBR or GPT in Windows 11
Converting a hard drive between MBR (Master Boot Record) and GPT (GUID Partition Table) partition styles fixes disk errors and lets Windows 11 format your storage correctly. GPT is the modern standard required for Windows 11 that supports drives larger than 2TB and modern UEFI boot security features.
MBR is an older format limited to 4 primary partitions and a maximum drive size of 2 terabytes. You need to switch your partition style if Windows setup fails during a fresh installation, or if you add a new large drive that fails to show its full storage capacity.
To convert a disk to MBR or GPT in Windows 11, open Disk Management, delete all volumes on the target disk, then right-click the unallocated space and select “Convert to MBR Disk” or “Convert to GPT Disk.” Finally, create a new simple volume.
Before You Start: Important Warnings!
Changing a disk’s partition style between MBR and GPT erases all data on that drive. Before you convert disk mbr gpt layouts, back up all your important files, programs, and personal settings to an external drive or cloud storage. This step is required because the conversion process wipes the drive completely, and you cannot recover your files once the process starts.
- Back up your data: Copy everything important from the disk you plan to change to an external drive, cloud storage, or another safe place.
- Close everything: Shut down any apps or programs that might be using the disk you are about to change. This helps prevent errors and data loss.
- Administrator access: You need to be logged into Windows as an administrator to do this.
Understood? Great. Let’s look at how to make the change.
Option 1Changing Your Disk Using Disk Management
Disk Management is a Windows tool that helps you manage your storage drives by showing a picture of your drives. This visual representation makes working with drives easier, making it the preferred method for you if you want to use a visual tool.
Step 1Open Disk Management
Disk Management is the built-in Windows tool you need to access when you want to convert disk mbr gpt formats using the graphical interface. Press the Win plus R on your keyboard to open the Run dialog box, type diskmgmt.msc into the empty field, and press Enter or click OK to launch the Disk Management window immediately.
- Press the Windows key + R on your keyboard. This opens the Run box.
- Type
diskmgmt.mscinto the box and press Enter or click OK.

The Disk Management window opens, showing all the drives connected to your computer. This window displays your disk partitions and helps you manage them, such as converting a disk between MBR and GPT formats.
Step 2Delete All Existing Partitions
Windows requires you to delete all existing volumes before you convert disk mbr gpt partition styles. Locate your target drive in the lower section of the Disk Management window, right-click each individual partition on that drive, and select Delete Volume until the entire storage space displays as unallocated black space.
- In the bottom part of the Disk Management window, find the disk you want to change. It will be labeled something like "Disk 1", "Disk 2", etc. Make sure you choose the correct disk!
- Right-click on each partition (volume) on that disk.
- Select Delete Volume... from the menu.
- Click Yes to confirm the deletion when asked.
- Do this for every partition on that disk until the whole disk shows as Unallocated space.

You don't want to accidentally erase your main Windows drive!
Step 3Convert the Disk
Disk Management allows you to convert disk mbr gpt formats directly once the target drive displays as unallocated space. Right-click the unallocated area of your chosen drive and click the option that says Convert to MBR Disk or Convert to GPT Disk depending on your system requirements.
- Right-click on the Unallocated space of the disk you want to change.
- You will see an option that says either Convert to MBR Disk or Convert to GPT Disk, depending on what style it is now.
- Click the option that matches the style you want to switch to.
The disk's partition style will now change to MBR or GPT. The disk label should update to show the new partition style, confirming the conversion was successful for your disk.
Step 4Create a New Partition
New partitions must be created before you can store files on your drive after you convert disk mbr gpt formats. Right-click the unallocated space of your converted drive in Disk Management, select New Simple Volume, and follow the setup wizard to assign a drive letter and format the volume with the NTFS file system.
- Right-click on the Unallocated space of the converted disk.
- Select New Simple Volume....
- Follow the steps in the wizard. You will choose the size for your new partition, give it a drive letter, and format it with a file system (like NTFS, which is standard for Windows).

You have now successfully changed your disk's style to MBR or GPT and set up the disk with a new partition for Windows 11, ensuring compatibility with modern hardware.
Option 2Changing Your Disk Using Command Prompt (DiskPart)
If you are comfortable typing commands, the Command Prompt (using a tool called DiskPart) is a powerful way to manage disks. This method can be quicker for some people once they learn the commands.
Step 1Open Windows Terminal as Administrator
Administrator permissions are required in Windows Terminal to run advanced commands when you convert disk mbr gpt partitions. Click the Start button, type Windows Terminal, right-click the app in the search results, select Run as administrator, and click Yes on the User Account Control prompt to open the console.
- Click the Start button.
- Type
Windows Terminal. - In the search results, right-click on Windows Terminal.
- Select Run as administrator.
- Click Yes if a User Account Control (UAC) window appears.
- In Windows Terminal, make sure the Command Prompt profile is chosen (it's usually the default).
Step 2Start DiskPart
Now, let's start the DiskPart tool.
- Type
diskpartinto the Command Prompt window. - Press Enter.
You will see the prompt change to DISKPART>, which means DiskPart is ready for your commands.
Step 3List Available Disks
DiskPart uses the list disk command to show every storage drive connected to your computer so you can avoid mistakes when you convert disk mbr gpt configurations. Type list disk at the DISKPART prompt and press Enter to view the exact disk numbers, total sizes, and current partition styles of your drives.
- Type
list diskat theDISKPART>prompt. - Press Enter.
DiskPart will show you a list of all disks on your computer, including their size and current partition style (GPT or MBR).
Step 4Select the Disk to Convert
Active disk selection ensures you modify the correct drive when you convert disk mbr gpt styles using the command line. Type select disk followed by your target drive number, such as select disk 2, and press Enter to target that specific storage device for your next commands.
- Type
select disk <number>, but replace<number>with the actual number of the disk you want to change (for example,select disk 2). - Press Enter.
DiskPart will tell you that the disk you chose is now the active disk.
You have one final opportunity to confirm you have selected the correct disk for conversion. All data on this chosen disk will be permanently erased in the subsequent steps.
Step 5Clean the Disk
DiskPart uses the clean command to wipe all existing partitions and data from your active drive to prepare it when you convert disk mbr gpt styles. Type clean at the DISKPART prompt and press Enter to erase the selected drive completely and turn all of its storage into unallocated space.
- Type
cleanat theDISKPART>prompt. - Press Enter.
DiskPart will confirm it successfully cleaned the disk. The disk will now appear as "Unallocated" in Disk Management, ready for you to change its style.
Step 6Convert to GPT or MBR
Now, you tell DiskPart which partition style you want to use.
- To change to GPT, type
convert gptand press Enter. - OR, to change to MBR, type
convert mbrand press Enter.
DiskPart will confirm the conversion. The disk's partition style has now been changed.
Step 7Create a New Partition
Primary partitions and file systems must be set up after you convert disk mbr gpt layouts using the command line. Type create partition primary to use your unallocated drive space, and then type your format command to set up the file system so Windows can read and write files to the drive again.
- You can close DiskPart and use Disk Management (as shown in Option 1, Step 4) to create a new simple volume.
- Or, you can keep using DiskPart commands if you are comfortable:
- Type
create partition primaryand press Enter to create a partition that uses all the unallocated space. - Type
format fs=ntfs quickand press Enter to quickly format it with NTFS. - Type
assign letter=<X>and press Enter. Replace<X>with the drive letter you want (for example,assign letter=D).
You have now changed your disk using the Command Prompt!
Option 3Changing Your Disk Using PowerShell
PowerShell is another powerful command-line tool in Windows. It's more modern than Command Prompt and uses scripting. This method is similar to DiskPart but uses different commands.
Step 1Open Windows Terminal as Administrator
Just like with Command Prompt, you need administrator rights.
- Click the Start button.
- Type
Windows Terminal. - In the search results, right-click on Windows Terminal.
- Select Run as administrator.
- Click Yes if a User Account Control (UAC) window appears.
- In Windows Terminal, choose the Windows PowerShell profile from the dropdown menu (or the default PowerShell tab).
Step 2List Disks
First, find out which disk you are working with.
- Type
Get-Diskat the PowerShell prompt. - Press Enter.
The `diskpart` command displays detailed information for all your disks, including their numbers, status, and partition style (MBR or GPT), which helps you understand your current disk setup before making changes.
Step 3Select the Disk Number
Find the specific disk you want to change and note its number.
- Look at the results from
Get-Diskand find the disk you want to change. - Write down its Number.
Step 4Remove Existing Partitions
PowerShell removes all existing volumes from your target drive so you can safely convert disk mbr gpt partition styles. Run the Get-Partition cmdlet combined with Remove-Partition while specifying your disk number to strip away all old partitions and wipe the data from the drive in one action.
- Type the following command. Replace
<DiskNumber>with the actual number of the disk you found in the previous step (for example,Get-Partition -DiskNumber 2 -EA SilentlyContinue | Remove-Partition -confirm:$false). - Press Enter.
This command finds all partitions on the disk you specified and removes them without asking for confirmation for each one.
Crucial Warning: Make sure you have the correct <DiskNumber>. This action cannot be undone and will erase the disk completely.
Step 5Convert the Disk to GPT or MBR
PowerShell changes your drive format instantly once you clear out all existing partitions to convert disk mbr gpt layouts. Run the Set-Disk cmdlet with your specific disk number and the partition style parameter set to either GPT or MBR to complete the partition conversion process.
- To change to GPT, type the following command. Replace
<DiskNumber>with your disk's number (for example,Set-Disk -DiskNumber 2 -PartitionStyle GPT). Press Enter. - OR, to change to MBR, type the following command. Replace
<DiskNumber>with your disk's number (for example,Set-Disk -DiskNumber 2 -PartitionStyle MBR). Press Enter.
PowerShell will apply the chosen partition style to the disk.
Step 6Create a New Partition
PowerShell lets you set up new volumes and format your storage right after you convert disk mbr gpt partition styles. Run the New-Partition cmdlet with maximum size parameters followed by the Format-Volume command to make your converted drive ready for storing files in Windows.
- You can close PowerShell and use Disk Management (Option 1, Step 4) to create a new volume.
- Or, you can continue in PowerShell:
- To create a partition using all the unallocated space, type
New-Partition -DiskNumber <DiskNumber> -UseMaximumSize(replace<DiskNumber>). - Then, to format it, type
Format-Volume -Partition (Get-Partition -DiskNumber <DiskNumber>) -FileSystem NTFS -Confirm:$false. - Finally, assign a drive letter:
Get-Partition -DiskNumber <DiskNumber> | Set-Partition -NewDriveLetter <X>(replace<X>with the letter you want).
And there you go – your disk is changed and ready to use!
Understanding MBR vs. GPT
Partition styles dictate how your computer organises data on a storage drive, which is why you must sometimes convert disk mbr gpt layouts. MBR is an older standard limited to four partitions and two-terabyte drives, while GPT is the modern standard that supports larger storage capacities and modern motherboard firmware.
- MBR (Master Boot Record): This is the older standard. It's used by older PCs and 32-bit systems. MBR has limits: it can only support disks up to 2TB in size and a maximum of four main partitions.
- GPT (GUID Partition Table): This is the modern standard, used by most current computers and needed for UEFI boot. GPT supports much larger disk sizes (more than you'll likely need today) and can have many more partitions (usually 128 in Windows). It's generally more reliable and flexible.
Most people today want their main Windows 11 drive to be GPT, especially if their computer uses UEFI firmware. Other drives can be MBR for compatibility with very old systems, but GPT is usually the better choice for drives larger than 2 terabytes.
Summary
Converting a disk's partition style between MBR and GPT involves erasing data but can be done confidently using Disk Management, Command Prompt (DiskPart), or PowerShell. Remember to back up your data first, and then follow the step-by-step guides to manage your disk partition styles effectively.
Can I convert MBR to GPT on 🪟 Windows 11?
Use MBR2GPT tool or clean install Windows 11 to convert MBR to GPT, with options to disable legacy boot and increase UEFI partition size. Legacy mode = BIOS/MBR boot. Turn off legacy mode = EFI/GPT boot.
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!