- To check if the drive uses GPT or MBR on Windows 10, open “Disk Management,” right-click the disk, choose “Properties,” open the “Volume” tab, confirm the “Master Boot Record (MBR)” or “GUID Partition Table (GPT)” style.
- On Command Prompt (admin), run the “Diskpart,” then the “List Disk” commands, and confirm the partition style.
- Run the “Get-Disk” command on PowerShell (admin) to determine if the disk uses MBR or GPT.
UPDATED 12/20/2023: On Windows 10, you can find two partition style types, including the legacy “Master Boot Record” (MBR) or the newer “GUID Partition Table (GPT).”
A partition describes how data is stored on the hard drive and its boundaries (start and end), and it includes the instructions to make the partition bootable. On Windows 10, the Master Boot Record (MBR) is the older style, and it is the most compatible, but it has some limitations, such as support for drives of up to 2TB of storage per portion.
The GUID Partition Table (GPT) is the newer style that overcomes the limitations, which includes support for larger capacity drivers and an unlimited number of partitions. In addition, other advantages include data integrity check and self-recovery and partition and boot data are stored in multiple places within the drive.
If you have the 64-bit version of Windows 10 on a device using Unified Extensible Firmware Interface (UEFI) firmware, you should be using the GPT style. However, MBR should only be chosen if you need a more compatible system using older hardware.
In this guide, I will teach you how to determine if a hard drive uses the MBR or GPT partition style.
- Check MBR or GPT partition style from Disk Management
- Check MBR or GPT partition style from Command Prompt
- Check MBR or GPT partition style from PowerShell
Check MBR or GPT partition style from Disk Management
To check the partition style of a drive Windows 10, use these steps:
-
Open Start on Windows 10.
-
Search for Disk Management and click the top result to open the app.
-
Right-click the disk (not the partition) and select the Properties option.
-
Click the Volumes tab.
-
Check the “Partition style” field to confirm if the drive is formatted using the “Master Boot Record (MBR)” or “GUID Partition Table (GPT)” style.
Once you complete the steps, you will know which partition style the drive uses on Windows 10.
Check MBR or GPT partition style from Command Prompt
To determine if the drive uses GPT or MBR from Command Prompt, use these steps:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following commands to determine the drive partition scheme and press Enter on each line:
Diskpart List disk
-
If the drive uses “GPT,” you’ll see an asterisk character (*) under the “Gpt” column. If you don’t see the asterisk character (*), the drive uses the “MBR” scheme.
After you complete the steps, you will know which partition style the drive uses on Windows 10.
Check MBR or GPT partition style from PowerShell
To use PowerShell to determine whether the drive uses MBR or GPT, use these steps:
-
Open Start.
-
Search for PowerShell, right-click the top result, and select the Run as administrator option.
-
Type the following commands to determine the drive partition scheme and press Enter:
Get-Disk
-
Under the “Partition Style” column, determine if the drive uses the MBR or GPT scheme.
Once you complete the steps, you will understand the partition style the hard drive uses on Windows 10.
Update December 20, 2023: This guide has been updated to ensure accuracy and include additional details.