- 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, and 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.
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, its boundaries (start and end), and the instructions to make the partition bootable.
MBR vs. GPT
The Master Boot Record (MBR) is the older style available on Windows 10 and is the most compatible, but it has some limitations, such as support for drives with up to 2TB of storage per partition.
On the other hand, the GUID Partition Table (GPT) is the newer style that addresses these limitations, including support for larger-capacity drives and an unlimited number of partitions. In addition, other advantages include data integrity checks and self-recovery, and partition and boot data are stored in multiple places within the drive.
When to use GPT or MBR
You should use MBR for:
- Windows 10 32-bit version.
- Legacy BIOS (Basic Input Output System).
- Small drives (usually) under 2TB.
You should use GPT for:
- Windows 10 64-bit version.
- Unified Extensible Firmware Interface (UEFI) firmware.
- Large drives over 2TB.
Unless you are reviving a computer from 2010 or earlier, you almost certainly want to use GPT.
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
- FAQs about checking GPT or MBR partition style on Windows 10
Check MBR or GPT partition style from Disk Management
To check the partition style of a drive on 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 the 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.
FAQs about checking GPT or MBR partition style on Windows 10
Here’s a list of frequently asked questions (FAQs) and answers about determining GPT or MBR partition style on Windows 10.
How do I check if my drive is GPT or MBR on Windows 10?
You can check the partition style in Disk Management, Command Prompt, or PowerShell. In Disk Management, open the disk’s Properties and view the “Volumes” tab. In Command Prompt, use Diskpart and List disk. In PowerShell, run Get-Disk to see whether the drive uses MBR or GPT.
What is the difference between MBR and GPT on Windows 10?
MBR is the older partition style, with a 2TB drive limit and fewer partitions. GPT is the modern standard that supports drives larger than 2TB, allows for more partitions, and includes redundancy and integrity checks. Most modern Windows 10 systems use GPT with UEFI firmware.
What is a partition style on a hard drive?
A partition style defines how data is structured and organized on a drive. It determines how partitions are created, where boot information is stored, and the maximum drive size. On Windows 10, the two partition styles are Master Boot Record (MBR) and GUID Partition Table (GPT).
Should I use GPT or MBR on Windows 10?
You should use GPT in most cases. GPT is recommended for 64-bit Windows 10, UEFI firmware, and drives larger than 2TB. MBR is typically used for legacy BIOS systems or older 32-bit installations. On modern PCs, GPT is the preferred and more future-proof option.
Is GPT better than MBR for modern PCs?
Yes, GPT is better for modern PCs. It supports larger drives, more partitions, improved reliability, and redundancy for partition data. GPT is designed for UEFI systems and is standard on most computers built in the last decade, making it the recommended choice today.
How do I check if my disk is GPT or MBR using Command Prompt?
Open Command Prompt as administrator and run Diskpart, then type List disk. If you see an asterisk under the GPT column, the disk uses GPT. If there is no asterisk, the disk uses MBR. This method provides a quick way to confirm the partition scheme.
How do I see the partition style of a drive in PowerShell?
Open PowerShell as administrator and run the Get-Disk command. Check the “Partition Style” column in the output to confirm whether the drive uses MBR or GPT. This is one of the fastest ways to verify disk configuration on Windows 10.
How do I convert a drive from MBR to GPT on Windows 10 without losing data?
You can convert MBR to GPT without deleting files using the built-in MBR2GPT tool. Run Command Prompt as administrator and use mbr2gpt /validate followed by mbr2gpt /convert. This works on Windows 10 64-bit systems using UEFI firmware. Always create a full backup before proceeding.
Will Windows 10 boot if I switch from Legacy BIOS to UEFI?
Windows 10 will only boot in UEFI mode if the system drive uses GPT. If your drive is still MBR and you switch firmware from Legacy BIOS to UEFI, the system will fail to boot. You must convert the disk to GPT before changing firmware settings.
Does GPT improve performance compared to MBR?
GPT does not directly improve drive performance. Partition style affects structure and compatibility, not read or write speeds. However, GPT improves reliability through redundancy and error detection, which can enhance stability and recovery in the event of partition corruption.
Update February 23, 2026: This guide has been updated to ensure accuracy and include additional details.