Skip to content

Instantly share code, notes, and snippets.

@craigmayhew
Last active October 25, 2021 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save craigmayhew/b64bea3aa26eabf474e590115778ce71 to your computer and use it in GitHub Desktop.
Save craigmayhew/b64bea3aa26eabf474e590115778ce71 to your computer and use it in GitHub Desktop.
Windows 10->11 requires MBT be converted to UEFI GBT

Windows 11 requires disks use GPT.

A windows 10 to 11 upgrade will not be allowed to begin until this is solved. You can convert MBR to GPT using mbr2gpt built right into windows

Get to to the directory with mbrgpt.exe in cd C:\Windows\system32\

First we will validate the boot volume. i.e. the C drive mbr2gpt /validate /allowFullOS if validation looked successful then move on to the conversion mbr2gpt /convert /allowFullOS

You can also do other disk drives by specifying the disk number (they start at 0) mbr2gpt /convert /disk:1 /allowfullos

Don't forget you may also need to change settings in the motherboard bios to boot from UEFI and secure boot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment