Caleb33 Ah, the classic "convert gpt" trap.
To give you the straight answer: No, you cannot force DiskPart to convert a disk to GPT if it has partitions on it. DiskPart strictly requires the drive to be completely empty. To make it work there, you'd have to run "clean", which will wipe your secondary partition.
Since you want to keep your data, don't use DiskPart. Use MBR2GPT instead, it's a built-in Windows tool designed to do this exact conversion without data loss.
Since you are already in the Shift+F10 command prompt, just run these two commands:
1. Check if it's safe to convert:
- mbr2gpt /validate /allowFullOS
2. If it says validation passed, run the conversion:
- mbr2gpt /convert /allowFullOS
If it works, you are good to go! Just remember to head into your motherboard's BIOS before installing Windows 11 and change your Boot Mode from Legacy/CSM to UEFI (Windows 11 requires this for GPT drives).
Note: If the tool fails validation (which happens sometimes with weird partition layouts), your only native option left is to back up that secondary partition to an external drive, run "clean" in DiskPart, and start fresh.