A systems administrator is preparing to perform an in-place upgrade on several corporate desktop computers from 64-bit Windows 10 Pro to Windows 11 Pro. During a pre-upgrade audit, the administrator finds that the system drives use the Master Boot Record (MBR) partition scheme, even though the motherboard firmware supports UEFI, Secure Boot, and TPM 2.0. To meet Windows 11 installation prerequisites without losing existing user files or requiring a clean operating system reinstall, which command-line utility should the administrator run first to prepare the drive partition style?
- mbr2gpt /convert /allowFullOSAnswer
- Bconvert C: /fs:ntfs
- Cdiskpart followed by the clean and convert gpt commands
- Ddism /online /enable-feature /featurename:UEFI-Boot
Answer
The correct action is to execute mbr2gpt /convert /allowFullOS.
The correct command is mbr2gpt /convert /allowFullOS. Windows 11 mandates UEFI firmware mode, which in turn requires the storage drive to use the GPT partition scheme. The Windows built-in MBR2GPT tool safely modifies the partition structure from MBR to GPT without wiping user files, applications, or OS configurations. Adding /allowFullOS enables this execution while running inside the full Windows 10 environment.
Step-by-Step Solution
Key Concept
Partition Scheme Conversion for Windows Upgrades
Estimated Time:1m 30s