Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
MBR2GPT is a command-line tool provided by Microsoft, which is used to convert a disk from Master Boot Record (MBR) to GUID Partition Table (GPT) without modifying or deleting data on the disk. This tool is particularly useful when you want to switch from BIOS to UEFI boot mode, as UEFI requires a GPT disk.
Understanding MBR and GPT:
Prerequisites:
Steps to Convert MBR to GPT Using MBR2GPT:
Open Command Prompt in Windows Recovery Environment:
Validate the Disk:
Before converting, validate the disk to ensure it meets all requirements.
mbr2gpt /validate /disk:<disk number> /allowFullOS
Replace <disk number>
with the number of the disk you want to convert. You can find this number by running diskpart
and then list disk
.
Convert the Disk:
If the validation is successful, proceed with the conversion.
mbr2gpt /convert /disk:<disk number> /allowFullOS
This command will convert the disk from MBR to GPT.
Change Firmware Settings:
After conversion, you need to change your firmware settings from BIOS to UEFI.
Boot into Windows:
Save the changes and restart your computer. It should now boot using UEFI mode from the GPT disk.
Examples:
Validating a Disk:
If your disk number is 0, the command will look like this:
mbr2gpt /validate /disk:0 /allowFullOS
Converting a Disk:
To convert the same disk, use:
mbr2gpt /convert /disk:0 /allowFullOS
Troubleshooting:
chkdsk
and resolve them before proceeding.