FAT32 Format Tools: Formatter, Format, and the 32 GB Limit
Windows Explorer's Format dialog refuses to create FAT32 partitions larger than 32 GB, even though FAT32 itself supports much larger volumes — here's why, and the safe ways to format around it.
Updated September 8, 2026 · PC Utility Hub Editorial Team
What people mean by a FAT32 format tool
Searches for a FAT32 formatter or format tool almost always come down to one problem: Windows' own Format dialog and format.exe cap FAT32 formatting at 32 GB, so a larger USB drive or SD card shows FAT32 grayed out or fails when selected. The fixes below use tools already on your PC (diskpart, PowerShell, Disk Management) or, where needed, a small third-party formatter — you don't need to hunt down anything unusual.
Why Windows blocks FAT32 formatting over 32 GB
The FAT32 file system itself can technically address volumes up to about 2 TB (2 TiB) with the right cluster size. Microsoft's own Format dialog and format.exe command, however, artificially cap FAT32 formatting at 32 GB, a limitation Microsoft introduced deliberately in Windows 2000/XP-era tooling, favoring NTFS for larger volumes. This limit is in the formatting tool, not the file system's real capability.
The 4 GB single-file limit
Regardless of how you format it, FAT32 cannot store any single file larger than 4 GB (technically 4,294,967,295 bytes). This trips people up most often with large video files or virtual machine disk images that fail to copy partway through with a vague error. If you hit this, exFAT or NTFS are the fixes, not a bigger FAT32 partition — reformatting FAT32 at a larger size does not change the per-file limit.
Partition-size considerations
FAT32's maximum practical volume size depends on cluster size — larger clusters allow bigger volumes but waste more space on small files. Most tools that format FAT32 above 32 GB pick a reasonable default cluster size automatically; you generally don't need to tune this unless a specific target device documents a required cluster size for compatibility.
Formatting FAT32 with File Explorer (up to 32 GB)
- 1Connect the drive, open File Explorer, and right-click it under This PC.
- 2Choose Format.
- 3Set File system to FAT32 (only offered for drives 32 GB and smaller).
- 4Leave Allocation unit size at Default unless you have a specific reason to change it.
- 5Check Quick Format for a fast format, and click Start.
If FAT32 doesn't appear in the list, the drive is larger than 32 GB and File Explorer won't offer it — use diskpart or PowerShell below instead.
Formatting via Disk Management
- 1Right-click the Start button and choose Disk Management.
- 2Right-click the target partition and choose Format.
- 3Select FAT32 from the File system dropdown (again limited to 32 GB and under by this GUI).
- 4Confirm the warning about data loss and click OK.
Warning: Formatting erases all data on the partition. Back up anything you need before continuing, in Disk Management or any other method below.
Formatting FAT32 over 32 GB with diskpart
Windows' command-line diskpart utility doesn't share the Format dialog's 32 GB FAT32 restriction, so you can use it to force a larger FAT32 volume when you genuinely need FAT32 rather than exFAT.
diskpart
list disk
select disk N
clean
create partition primary
format fs=fat32 quick
assignWarning: clean erases the entire selected disk. Double-check the disk number with list disk before proceeding — selecting the wrong disk destroys its data.
Formatting FAT32 with PowerShell
PowerShell's Format-Volume cmdlet can also format FAT32 above 32 GB without the Explorer dialog's cap, and is scriptable if you need to repeat the process.
Get-Disk
Get-Partition -DiskNumber N
Format-Volume -DriveLetter E -FileSystem FAT32 -NewFileSystemLabel "DATA" -Confirm:$falseWarning: Formatting a volume permanently erases its contents. Confirm the correct drive letter or disk number before running Format-Volume.
Third-party FAT32 formatters
Several free third-party GUI utilities exist specifically to format FAT32 volumes larger than 32 GB without touching a command line, generally by calling the same underlying formatting APIs diskpart uses but skipping the artificial cap. Judge any such tool the way you'd judge any utility that writes directly to a disk: download only from the developer's own official site (never a bundled installer from a random download portal), check that it's still actively maintained, and avoid anything asking for more system access than a simple formatter needs. When in doubt, diskpart or PowerShell above accomplish the same result with tools already on your PC.
exFAT and NTFS: the alternatives
For most drives over 32 GB, reconsider whether you actually need FAT32 at all — exFAT or NTFS are usually a better fit and avoid the workarounds above entirely.
| File system | Best for | Max file size | Compatibility |
|---|---|---|---|
| FAT32 | Legacy devices (older consoles, car stereos, embedded systems) that specifically require it | 4 GB | Universal, but old |
| exFAT | USB drives and SD cards over 32 GB used across Windows, macOS, and modern devices | Effectively unlimited | Wide modern support; not read/write on very old OSes |
| NTFS | Windows-only internal or external drives needing permissions, journaling, or very large files | Effectively unlimited | Native on Windows; macOS reads but can't write by default |
When to actually choose FAT32
Only use FAT32 over exFAT or NTFS if a specific target device documents a FAT32 requirement — for example, some older game consoles, car head units, TVs, or embedded systems only recognize FAT32. If nothing you own has that requirement, exFAT gives the same broad device compatibility without the 32 GB and 4 GB pain points.
Windows 10 and Windows 11 notes
The 32 GB Format-dialog restriction, diskpart's lack of that restriction, and the underlying FAT32 4 GB file limit are all identical between Windows 10 and Windows 11 — nothing about this behavior changed between the two versions.
Frequently asked questions
- Why can't I format my 64 GB USB drive as FAT32 in File Explorer?
- Microsoft's built-in Format dialog and format.exe both cap FAT32 formatting at 32 GB by design. Use diskpart, PowerShell, or a dedicated third-party FAT32 tool to go larger.
- Should I use FAT32 or exFAT on a large USB drive?
- Use exFAT unless a specific older device requires FAT32 — exFAT has no practical size-limit issue and supports files over 4 GB.
- Is diskpart safe for formatting a USB drive?
- Yes when used carefully. Confirm the correct disk number with list disk before running clean, since it's irreversible without a backup.
- Does FAT32 support files larger than 4 GB once formatted over 32 GB?
- No. The 4 GB per-file limit is independent of volume size and is a fixed FAT32 file system limitation.
- Will formatting my drive as FAT32 delete everything on it?
- Yes. Any format operation, whether through File Explorer, Disk Management, diskpart, or PowerShell, erases the target partition's existing data. Back up first.
Related pages
- DiskpartOverview of the diskpart cmd tool and its core disk and partition commands.
- Diskpart Clean & Format USBCommands to safely wipe and reformat a USB flash drive with diskpart.
- Batch File RenamerCompares File Explorer multi-rename, Microsoft PowerToys PowerRename, and PowerShell for batch renaming files.
- Free Unzip UtilityOverview of native Windows archive support plus 7-Zip and PeaZip as free extraction tools.