Warning
Deleting the wrong partition during setup erases data immediately with no undo. Confirm disk number and total size before deleting anything.
What you will achieve
Partition your system disk correctly during Windows setup — EFI System Partition, MSR, Windows volume, and optional recovery — without breaking boot or wiping secondary data drives.
1) Identify disks in the installer
- Boot from Windows installation USB and choose Custom: Install Windows only (advanced).
- Each physical disk appears by number and total size. If unsure which is which, disconnect secondary drives temporarily.
- UEFI installs need GPT. On a blank GPT disk, selecting unallocated space lets setup create required partitions automatically.
2) Clean install on empty space
- Select existing Windows partitions on the target disk, click Delete until you see Unallocated space on that disk only.
- Click the unallocated space and choose New. Accept the size Windows suggests — it reserves space for recovery and the EFI partition.
- Select the largest Primary partition and click Next to begin copying files.
3) Manual partitioning with diskpart (advanced)
From the installer, press Shift + F10 to open Command Prompt. Use only if you need a custom layout:
diskpart
list disk
select disk 0
clean
convert gpt
create partition efi size=260
format quick fs=fat32 label="System"
create partition msr size=16
create partition primary
format quick fs=ntfs label="Windows"
exit
4) Protect secondary data drives
- Extra disks (D:, second NVMe) should remain untouched unless you intend to wipe them.
- After install, open Disk Management (
diskmgmt.msc) to assign drive letters to unused partitions. - Verify the EFI partition: in Disk Management it appears as EFI System Partition, usually without a drive letter.
5) BitLocker and encrypted disks
- If BitLocker is enabled, suspend protection before partitioning: Control Panel → BitLocker → Suspend protection.
- Setup may refuse to modify encrypted volumes without suspension or recovery key.
- Re-enable BitLocker after successful install if you suspended it.
6) Extend C: after install
- If unallocated space sits immediately after C: on the same disk, extend in
diskmgmt.mscwithout third-party tools. - Non-contiguous unallocated space requires shrinking/moving partitions — backup first.
7) Windows Setup error messages
- "Selected disk has an MBR partition table" on UEFI PC — delete all partitions and convert to GPT, or enable CSM/Legacy in firmware for MBR install (not for Windows 11).
- "Windows cannot be installed to this disk. The partition is of an unrecognized type" — remove OEM recovery partitions only if you have USB recovery media elsewhere.
- 0x80300024 often means no usable partition selected — click New on unallocated space first.