How to Convert MBR to GPT Without Data Loss for Windows 11
Upgrading to Windows 11 requires a modern UEFI boot environment, which relies on the GUID Partition Table (GPT) rather than the older Master Boot Record (MBR) partition scheme. This guide explains how to use Microsoft’s built-in MBR2GPT command-line tool to safely convert your primary system disk from MBR to GPT without formatting your drive or losing your data.
Prerequisites Before Conversion
Before beginning the conversion process, ensure the following conditions are met to prevent errors:
- System Compatibility: Your motherboard must support UEFI firmware. Check your manufacturer’s documentation if unsure.
- Partition Limits: The target MBR disk can have a maximum of three primary partitions.
- Operating System: You must be running Windows 10 version 1703 or later.
- BitLocker: If BitLocker is enabled on the drive, suspend or decrypt it before proceeding.
- Data Backup: While the conversion process does not erase data, creating a full system backup before modifying partition tables is strongly recommended.
Step 1: Verify Current Partition Style
- Right-click the Start button and select Disk Management.
- Locate the disk where Windows is installed (usually Disk 0).
- Right-click the disk box on the left side and select Properties.
- Navigate to the Volumes tab.
- Check the Partition style. If it says Master Boot Record (MBR), proceed to the next step. If it says GUID Partition Table (GPT), your disk is already converted.
Step 2: Validate the Disk
The MBR2GPT tool must first validate that your disk layout meets all requirements for a safe conversion.
- Click the Start menu, type
cmd, right-click Command Prompt, and select Run as administrator. - Run the following command to validate the disk (replace
0with your target disk number if different):
mbr2gpt /validate /disk:0 /allowFullOS- If the command outputs
Validation completed successfully, continue to the conversion step. If it fails, review your partition layout to ensure no more than three primary partitions exist.
Step 3: Convert the Disk from MBR to GPT
- In the same elevated Command Prompt window, execute the conversion command:
mbr2gpt /convert /disk:0 /allowFullOS- The tool will create the required EFI system partition, install UEFI boot files, and update the partition layout.
- Wait until the process finishes. The final message should state
Conversion completed successfully.
Step 4: Switch Firmware from Legacy BIOS to UEFI
Once the disk conversion is complete, you must configure your computer to boot in UEFI mode instead of Legacy/CSM mode; otherwise, Windows will not start.
- Restart your computer and press the designated key (usually F2, F12, Delete, or Esc) to enter your motherboard’s BIOS/UEFI setup.
- Navigate to the Boot or Security section.
- Change the boot mode from Legacy / CSM to UEFI.
- Enable Secure Boot if required for Windows 11 compatibility.
- Save your changes and exit (typically by pressing F10).
Your system will now boot into Windows using the GPT partition scheme and native UEFI mode, satisfying a primary hardware requirement for Windows 11 installation.