Do You Actually Need to Do This? (Updated for 2026)
Usually not, if you’re using Rufus itself to build the media. Rufus sizes the boot partition to match the actual content it’s writing rather than spanning the entire disk, so the classic “oversized FAT32/exFAT partition confuses older firmware” problem doesn’t normally arise when Rufus (or the Windows Media Creation Tool) does the formatting and copying for you — even on a drive well over 32GB. Manual DiskPart partition-shrinking is still genuinely useful in one specific scenario: when you’re building the media yourself by hand — formatting the whole drive as one large partition and thenxcopy/robocopy-ing the extracted ISO contents onto it — rather than letting Rufus or the MCT manage the disk layout. If that’s your workflow, or you’re troubleshooting a drive that still won’t boot despite using Rufus, the steps below still apply.
Steps
- Plug in the USB drive and open an elevated Command Prompt.
- Run
diskpartto enter the DiskPart console.
list disk select disk # clean create partition primary select partition 1 active shrink desired=32768 minimum=32768 format fs=ntfs quick assignReplace
# with the correct disk number for your USB drive — double-check this against the size shown in list disk before running clean, since that command wipes the selected disk entirely.
This creates a 32GB active partition on the drive regardless of its total capacity, which keeps it within the size boot firmware expects. Once formatted, copy your Windows installer files across as normal (via xcopy/robocopy, or by mounting the ISO and dragging the contents over) and the drive will boot correctly.
One further gotcha worth checking if a drive still refuses to boot after this: confirm the target system’s firmware boot mode (UEFI vs. Legacy/CSM) matches how you formatted the partition — an NTFS-formatted USB won’t boot under pure UEFI without a compatible boot loader, which is one reason tools like Rufus offer a separate “GPT for UEFI” option rather than always formatting as NTFS/MBR.
Gear We Recommend
A few general tech accessories worth having alongside this.
Browse our General Tech Accessories picks on AmazonAs an Amazon Associate, TechyGeeksHome earns from qualifying purchases.
Discover more from TechyGeeksHome
Subscribe to get the latest posts sent to your email.