MBR2GPT (2024)

MBR2GPT.EXE converts a disk from the Master Boot Record (MBR) to the GUID Partition Table (GPT) partition style without modifying or deleting data on the disk. The tool runs from a Windows Preinstallation Environment (Windows PE) command prompt, but can also be run from the full Windows operating system (OS) by using the /allowFullOS option.

MBR2GPT.EXE is located in the Windows\System32 directory on a computer running Windows.

The tool is available in both the full OS environment and Windows PE.

See the following video for a detailed description and demonstration of MBR2GPT.

You can use MBR2GPT to:

  • Convert any attached MBR-formatted system disk to the GPT partition format. You can't use the tool to convert non-system disks from MBR to GPT.
  • Convert an MBR disk with BitLocker-encrypted volumes as long as protection is suspended. To resume BitLocker after conversion, you'll need to delete the existing protectors and recreate them.
  • Convert an operating system disk from MBR to GPT using Microsoft Configuration Manager or Microsoft Deployment Toolkit (MDT).

Offline conversion of system disks with earlier versions of Windows installed, such as Windows 7, 8, or 8.1 aren't officially supported. The recommended method to convert these disks is to upgrade the operating system to a currently supported version of Windows, then perform the MBR to GPT conversion.

Important

After the disk has been converted to GPT partition style, the firmware must be reconfigured to boot in UEFI mode.

Make sure that your device supports UEFI before attempting to convert the disk.

Disk Prerequisites

Before any change to the disk is made, MBR2GPT validates the layout and geometry of the selected disk to ensure that:

  • The disk is currently using MBR
  • There's enough space not occupied by partitions to store the primary and secondary GPTs:
    • 16 KB + 2 sectors at the front of the disk
    • 16 KB + 1 sector at the end of the disk
  • There are at most three primary partitions in the MBR partition table
  • One of the partitions is set as active and is the system partition
  • The disk doesn't have any extended/logical partition
  • The BCD store on the system partition contains a default OS entry pointing to an OS partition
  • The volume IDs can be retrieved for each volume that has a drive letter assigned
  • All partitions on the disk are of MBR types recognized by Windows or has a mapping specified using the /map command-line option

If any of these checks fails, the conversion doesn't proceed, and an error is returned.

Syntax

MBR2GPT /validate|convert [/disk:<diskNumber>] [/logs:<logDirectory>] [/map:<source>=<destination>] [/allowFullOS]

Options

OptionDescription
/validateInstructs MBR2GPT.exe to perform only the disk validation steps and report whether the disk is eligible for conversion.
/convertInstructs MBR2GPT.exe to perform the disk validation and to proceed with the conversion if all validation tests pass.
/disk:<diskNumber>Specifies the disk number of the disk to be converted to GPT. If not specified, the system disk is used. The mechanism used is the same as used by the diskpart.exe tool SELECT DISK SYSTEM command.
/logs:<logDirectory>Specifies the directory where MBR2GPT.exe logs should be written. If not specified, %windir% is used. If specified, the directory must already exist, it isn't automatically created or overwritten.
/map:<source>=<destination>Specifies other partition type mappings between MBR and GPT. The MBR partition number is specified in decimal notation, not hexadecimal. The GPT GUID can contain brackets, for example: /map:42={af9b60a0-1431-4f62-bc68-3311714a69ad}. Multiple /map options can be specified if multiple mappings are required.
/allowFullOSBy default, MBR2GPT.exe can only run from Windows PE and is blocked from running in full Windows. This option overrides this block and enables disk conversion while running in the full Windows environment.
Note: Since the existing MBR system partition is in use while running the full Windows environment, it can't be reused. In this case, a new EFI system partition is created by shrinking the OS partition.

Examples

Validation example

In the following example, disk 0 is validated for conversion. Errors and warnings are logged to the default location of %windir%.

X:\> mbr2gpt.exe /validate /disk:0MBR2GPT: Attempting to validate disk 0MBR2GPT: Retrieving layout of diskMBR2GPT: Validating layout, disk sector size is: 512MBR2GPT: Validation completed successfully

Conversion example

In the following example:

  1. The current disk partition layout is displayed prior to conversion using DiskPart - three partitions are present on the MBR disk (disk 0):

    • A system reserved partition.
    • A Windows partition.
    • A recovery partition.
    • A DVD-ROM is also present as volume 0.
  2. The OS volume is selected, partitions are listed, and partition details are displayed for the OS partition. The MBR partition type is 07 corresponding to the installable file system (IFS) type.

  3. The MBR2GPT tool is used to convert disk 0.

  4. The DiskPart tool displays that disk 0 is now using the GPT format.

  5. The new disk layout is displayed - four partitions are present on the GPT disk: three are identical to the previous partitions and one is the new EFI system partition (volume 3).

  6. The OS volume is selected again. The detail displays that the OS volume is converted to the GPT partition type of ebd0a0a2-b9e5-4433-87c0-68b6b72699c7 corresponding to the PARTITION_BASIC_DATA_GUID type.

As noted in the output from the MBR2GPT tool, you must make changes to the computer firmware so that the new EFI system partition boots properly.


Expand to show MBR2GPT example
X:\>DiskPart.exeMicrosoft DiskPart version 10.0.15048.0Copyright (C) Microsoft Corporation.On computer: MININT-K71F13NDISKPART> list volume Volume ### Ltr Label Fs Type Size Status Info ---------- --- ----------- ----- ---------- ------- --------- -------- Volume 0 F CENA_X64FRE UDF DVD-ROM 4027 MB Healthy Volume 1 C System Rese NTFS Partition 499 MB Healthy Volume 2 D Windows NTFS Partition 58 GB Healthy Volume 3 E Recovery NTFS Partition 612 MB Healthy HiddenDISKPART> select volume 2Volume 2 is the selected volume.DISKPART> list partition Partition ### Type Size Offset ------------- ---------------- ------- ------- Partition 1 Primary 499 MB 1024 KB* Partition 2 Primary 58 GB 500 MB Partition 3 Recovery 612 MB 59 GBDISKPART> detail partitionPartition 2Type : 07Hidden: NoActive: NoOffset in Bytes: 524288000 Volume ### Ltr Label Fs Type Size Status Info ---------- --- ----------- ----- ---------- ------- --------- --------* Volume 2 D Windows NTFS Partition 58 GB HealthyDISKPART> exitLeaving DiskPart...X:\>mbr2gpt /convert /disk:0MBR2GPT will now attempt to convert disk 0.If conversion is successful the disk can only be booted in GPT mode.These changes cannot be undone!MBR2GPT: Attempting to convert disk 0MBR2GPT: Retrieving layout of diskMBR2GPT: Validating layout, disk sector size is: 512 bytesMBR2GPT: Trying to shrink the system partitionMBR2GPT: Trying to shrink the OS partitionMBR2GPT: Creating the EFI system partitionMBR2GPT: Installing the new boot filesMBR2GPT: Performing the layout conversionMBR2GPT: Migrating default boot entryMBR2GPT: Adding recovery boot entryMBR2GPT: Fixing drive letter mappingMBR2GPT: Conversion completed successfullyMBR2GPT: Before the new system can boot properly you need to switch the firmware to boot to UEFI mode!X:\>DiskPartMicrosoft DiskPart version 10.0.15048.0Copyright (C) Microsoft Corporation.On computer: MININT-K71F13NDISKPART> list disk Disk ### Status Size Free Dyn Gpt -------- ------------- ------- ------- --- --- Disk 0 Online 60 GB 0 B *DISKPART> select disk 0Disk 0 is now the selected disk.DISKPART> list volume Volume ### Ltr Label Fs Type Size Status Info ---------- --- ----------- ----- ---------- ------- --------- -------- Volume 0 F CENA_X64FRE UDF DVD-ROM 4027 MB Healthy Volume 1 D Windows NTFS Partition 58 GB Healthy Volume 2 C System Rese NTFS Partition 499 MB Healthy Hidden Volume 3 FAT32 Partition 100 MB Healthy Hidden Volume 4 E Recovery NTFS Partition 612 MB Healthy HiddenDISKPART> select volume 1Volume 1 is the selected volume.DISKPART> list partition Partition ### Type Size Offset ------------- ---------------- ------- ------- Partition 1 Recovery 499 MB 1024 KB* Partition 2 Primary 58 GB 500 MB Partition 4 System 100 MB 59 GB Partition 3 Recovery 612 MB 59 GBDISKPART> detail partitionPartition 2Type : ebd0a0a2-b9e5-4433-87c0-68b6b72699c7Hidden : NoRequired: NoAttrib : 0000000000000000Offset in Bytes: 524288000 Volume ### Ltr Label Fs Type Size Status Info ---------- --- ----------- ----- ---------- ------- --------- --------* Volume 1 D Windows NTFS Partition 58 GB Healthy

Specifications

Disk conversion workflow

The following steps illustrate high-level phases of the MBR-to-GPT conversion process:

  1. Disk validation is performed.
  2. The disk is repartitioned to create an EFI system partition if one doesn't already exist.
  3. UEFI boot files are installed to the EFI system partition.
  4. GPT metadata and layout information are applied.
  5. The boot configuration data (BCD) store is updated.
  6. Drive letter assignments are restored.

Creating an EFI system partition

For Windows to remain bootable after the conversion, an EFI system partition must be in place. MBR2GPT creates the EFI system partition using the following rules:

  1. The existing MBR system partition is reused if it meets these requirements:

    • It isn't also the OS or Windows Recovery Environment partition.
    • It is at least 100 MB (or 260 MB for 4K sector size disks) in size.
    • It's less than or equal to 1 GB in size. This size is a safety precaution to ensure it isn't a data partition.
    • The conversion isn't being performed from the full OS. In this case, the existing MBR system partition is in use and can't be repurposed.
  2. If the existing MBR system partition can't be reused, a new EFI system partition is created by shrinking the OS partition. This new partition has a size of 100 MB (or 260 MB for 4K sector size disks) and is formatted FAT32.

If the existing MBR system partition isn't reused for the EFI system partition, it's no longer used by the boot process after the conversion. Other partitions aren't modified.

Important

If the existing MBR system partition is not reused for the EFI system partition, it might be assigned a drive letter. If you do not wish to use this small partition, you must manually hide the drive letter.

Partition type mapping and partition attributes

Since GPT partitions use a different set of type IDs than MBR partitions, each partition on the converted disk must be assigned a new type ID. The partition type mapping follows these rules:

  1. The EFI system partition is always set to partition type PARTITION_SYSTEM_GUID (c12a7328-f81f-11d2-ba4b-00a0c93ec93b).
  2. If an MBR partition is of a type that matches one of the entries specified in the /map switch, the specified GPT partition type ID is used.
  3. If the MBR partition is of type 0x27, the partition is converted to a GPT partition of type PARTITION_MSFT_RECOVERY_GUID (de94bba4-06d1-4d40-a16a-bfd50179d6ac).
  4. All other MBR partitions recognized by Windows are converted to GPT partitions of type PARTITION_BASIC_DATA_GUID (ebd0a0a2-b9e5-4433-87c0-68b6b72699c7).

In addition to applying the correct partition types, partitions of type PARTITION_MSFT_RECOVERY_GUID also have the following GPT attributes set:

  • GPT_ATTRIBUTE_PLATFORM_REQUIRED (0x0000000000000001)
  • GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER (0x8000000000000000)

For more information about partition types, see:

Persisting drive letter assignments

The conversion tool attempts to remap all drive letter assignment information contained in the registry that corresponds to the volumes of the converted disk. If a drive letter assignment can't be restored, an error is displayed at the console and in the log, so that you can manually perform the correct assignment of the drive letter.

Important

This code runs after the layout conversion has taken place, so the operation cannot be undone at this stage.

The conversion tool will obtain volume unique ID data before and after the layout conversion, organizing this information into a lookup table. It then iterates through all the entries in HKLM\SYSTEM\MountedDevices, and for each entry it does the following:

  1. Checks if the unique ID corresponds to any of the unique IDs for any of the volumes that are part of the converted disk.
  2. If found, set the value to be the new unique ID, obtained after the layout conversion.
  3. If the new unique ID can't be set and the value name starts with \DosDevices, issue a console and log warning about the need for manual intervention in properly restoring the drive letter assignment.

Troubleshooting

The tool displays status information in its output. Both validation and conversion are clear if any errors are encountered. For example, if one or more partitions don't translate properly, this information is displayed and the conversion not performed. To view more detail about any errors that are encountered, see the associated log files.

Logs

Four log files are created by the MBR2GPT tool:

  • diagerr.xml
  • diagwrn.xml
  • setupact.log
  • setuperr.log

These files contain errors and warnings encountered during disk validation and conversion. Information in these files can be helpful in diagnosing problems with the tool. The setupact.log and setuperr.log files have the most detailed information about disk layouts, processes, and other information pertaining to disk validation and conversion.

Note

The setupact.log* files are different than the Windows Setup files that are found in the %Windir%\Panther directory.

The default location for all these log files in Windows PE is %windir%.

Interactive help

To view a list of options available when using the tool, enter the following command in an elevated command prompt:

mbr2gpt.exe /?

The following text is displayed:

C:\> mbr2gpt.exe /?Converts a disk from MBR to GPT partitioning without modifying or deleting data on the disk.MBR2GPT.exe /validate|convert [/disk:<diskNumber>] [/logs:<logDirectory>] [/map:<source>=<destination>] [/allowFullOS]Where: /validate - Validates that the selected disk can be converted without performing the actual conversion. /convert - Validates that the selected disk can be converted and performs the actual conversion. /disk:<diskNumber> - Specifies the disk number of the disk to be processed. If not specified, the system disk is processed. /logs:<logDirectory> - Specifies the directory for logging. By default logs are created in the %windir% directory. /map:<source>=<destination> - Specifies the GPT partition type to be used for a given MBR partition type not recognized by Windows. Multiple /map switches are allowed. /allowFullOS - Allows the tool to be used from the full Windows environment. By default, this tool can only be used from the Windows Preinstallation Environment.

Return codes

MBR2GPT has the following associated return codes:

Return codeDescription
0Conversion completed successfully.
1Conversion was canceled by the user.
2Conversion failed due to an internal error.
3Conversion failed due to an initialization error.
4Conversion failed due to invalid command-line parameters.
5Conversion failed due to error reading the geometry and layout of the selected disk.
6Conversion failed because one or more volumes on the disk is encrypted.
7Conversion failed because the geometry and layout of the selected disk don't meet requirements.
8Conversion failed due to error while creating the EFI system partition.
9Conversion failed due to error installing boot files.
10Conversion failed due to error while applying GPT layout.
100Conversion to GPT layout succeeded, but some boot configuration data entries couldn't be restored.

Determining the partition type

The partition type can be determined in one of three ways:

  • Using Windows PowerShell
  • Using the Disk Management tool
  • Using the DiskPart tool

Windows PowerShell

You can enter the following command at a Windows PowerShell prompt to display the disk number and partition type:

Get-Disk | ft -Auto

Example output:

PS C:\> Get-Disk | ft -AutoNumber Friendly Name Serial Number HealthStatus OperationalStatus Total Size Partition Style------ ------------- ------------- ------------ ----------------- ---------- ---------------0 MTFDDAK256MAM-1K1 13050928F47C Healthy Online 238.47 GB MBR1 ST1000DM003-1ER162 Z4Y3GD8F Healthy Online 931.51 GB GPT

Disk Management tool

You can view the partition type of a disk by using the Disk Management tool:

  1. Right-click on the Start Menu and select Disk Management. Alternatively, right-click on the Start Menu and select Run. In the Run dialog box that appears, enter diskmgmt.msc and then select OK.

  2. In the Disk Management window that appears:

    1. On the bottom pane, select the disk number of interest.

    2. Select the Action menu and then select All Tasks > Properties. Alternatively, right-click on the disk number of interest and select Properties.

    3. In the Properties dialog box that appears for the disk, select the Volumes tab.

    4. Under the Volumes tab, the partition type is displayed next to Partition style:.

DiskPart tool

The partition type can be determined with the DiskPart tool. The DiskPart tool is useful in scenarios where the Disk Management tool and PowerShell aren't available, such as in WinPE. PowerShell isn't available in WinPE when the PowerShell optional component isn't loaded. To use the DiskPart tool to determine the partition type:

  1. Open an elevated command prompt.

  2. In the elevated command prompt that opens enter the following command:

    DiskPart.exe
  3. The DISKPART> prompt is displayed in the command prompt windows. At the DISKPART> prompt, enter the following command:

    list disk
  4. The partition type is displayed in the Gpt column. If the partition is GPT, an asterisk (*) is displayed in the column. If the partition is MBR, the column is blank.

The following shows an example output of the DiskPart tool showing the partition type for two disks:

X:\>DiskPart.exeMicrosoft DiskPart version 10.0.15048.0Copyright (C) Microsoft Corporation.On computer: MININT-K71F13NDISKPART> list disk Disk ### Status Size Free Dyn Gpt -------- ------------- ------- ------- --- --- Disk 0 Online 238 GB 0 B Disk 1 Online 931 GB 0 B *

In this example, Disk 0 is formatted with the MBR partition style, and Disk 1 is formatted using GPT.

MBR2GPT (2024)
Top Articles
What Is a Budget?
How Painful Is Paintballing?
Dannys U Pull - Self-Service Automotive Recycling
Moon Stone Pokemon Heart Gold
Cottonwood Vet Ottawa Ks
Tesla Supercharger La Crosse Photos
CKS is only available in the UK | NICE
Https Www E Access Att Com Myworklife
Music Archives | Hotel Grand Bach - Hotel GrandBach
Fcs Teamehub
Smokeland West Warwick
Ncaaf Reference
Xm Tennis Channel
Persona 4 Golden Taotie Fusion Calculator
More Apt To Complain Crossword
Jesus Calling Oct 27
iLuv Aud Click: Tragbarer Wi-Fi-Lautsprecher für Amazons Alexa - Portable Echo Alternative
Soccer Zone Discount Code
Pekin Soccer Tournament
Daylight Matt And Kim Lyrics
Costco Great Oaks Gas Price
Hennens Chattanooga Dress Code
Decosmo Industrial Auctions
Sussyclassroom
Prot Pally Wrath Pre Patch
Wiseloan Login
Netwerk van %naam%, analyse van %nb_relaties% relaties
Kirk Franklin Mother Debra Jones Age
Cornedbeefapproved
Kqelwaob
Craigslist Sf Garage Sales
60 Second Burger Run Unblocked
M3Gan Showtimes Near Cinemark North Hills And Xd
Lichen - 1.17.0 - Gemsbok! Antler Windchimes! Shoji Screens!
What Time Is First Light Tomorrow Morning
The Mad Merchant Wow
Ket2 Schedule
Stanford Medicine scientists pinpoint COVID-19 virus’s entry and exit ports inside our noses
Cherry Spa Madison
5 Tips To Throw A Fun Halloween Party For Adults
Daily Times-Advocate from Escondido, California
Dcilottery Login
Alston – Travel guide at Wikivoyage
Nami Op.gg
Centimeters to Feet conversion: cm to ft calculator
Reilly Auto Parts Store Hours
Mejores páginas para ver deportes gratis y online - VidaBytes
Anonib New
Bumgarner Funeral Home Troy Nc Obituaries
Latest Posts
Article information

Author: Arielle Torp

Last Updated:

Views: 5644

Rating: 4 / 5 (41 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Arielle Torp

Birthday: 1997-09-20

Address: 87313 Erdman Vista, North Dustinborough, WA 37563

Phone: +97216742823598

Job: Central Technology Officer

Hobby: Taekwondo, Macrame, Foreign language learning, Kite flying, Cooking, Skiing, Computer programming

Introduction: My name is Arielle Torp, I am a comfortable, kind, zealous, lovely, jolly, colorful, adventurous person who loves writing and wants to share my knowledge and understanding with you.