Windows lets you format big FAT32 volumes — what changes

Microsoft ups FAT32 volume limit
FAT32 Supports Larger Volumes Now

Why this matters now

Microsoft has quietly updated Windows to let you create FAT32 volumes larger than the long-standing 32 GB practical limit. That’s a small change on the surface, but it affects a lot of real-world workflows: device compatibility, firmware packaging, media distribution, and simple cross-platform file sharing.

FAT32 has been around for decades and is still the de facto default for many embedded devices, cameras, TVs, and game consoles because of its near-universal support. Until recently, Windows stopped you from formatting drives as FAT32 when they were bigger than 32 GB. You had to reach for third-party utilities or use other file systems with their own trade-offs. The updated behavior reduces that friction.

Quick refresher: FAT32’s strengths and limits

  • Broad device compatibility: almost every consumer device that reads removable storage handles FAT32.
  • Lightweight metadata and low overhead: good for simple flash drives and boot partitions.

But FAT32 also has hard technical limits you must remember:

  • Maximum file size of 4 GB minus 1 byte — you cannot store a single file larger than ~4 GB.
  • Lacks journaling, file permissions, and modern integrity features.
  • Performance and fragmentation issues on very large volumes.

The important takeaway: Microsoft changing the allowed volume size does not change the 4 GB per-file ceiling or the lack of modern filesystem features.

Practical scenarios where the change helps

1) Shipping larger, universally readable USB drives

  • If you distribute promotional materials, installers, or media that must be read by smart TVs, car stereos, or rental kiosks, FAT32 keeps compatibility predictable. Previously you’d be forced to split the drive or use exFAT/NTFS with uncertain device support. Now you can format bigger drives as FAT32 natively.

2) Embedded and IoT device firmware

  • Many embedded bootloaders accept a FAT32-formatted partition for firmware and assets. Developers creating developer images or flashing tools can standardize on a FAT32 partition without third-party formatters.

3) Cross-platform workflows where file sizes remain small

  • For teams exchanging many small files (documents, scripts, configuration blobs), FAT32 is still convenient. The ability to create larger FAT32 volumes simplifies storage management for shared drives used across Windows, macOS, Linux, and consumer hardware.

4) UEFI and multi-boot setups

  • The EFI System Partition (ESP) is FAT32 and usually small, but some multi-boot or installer workflows benefit from a FAT32 data partition. Being able to make that partition larger helps when you need more room for installers, drivers, or recovery files.

What hasn’t changed — and why it matters for decision-making

  • The 4 GB per-file limitation remains. If you’re moving large media files, disk images, or database exports that exceed 4 GB, FAT32 is still a non-starter.
  • Security and recoverability: FAT32 lacks metadata for permissions and has no journaling. For business-critical data, prefer filesystems with better integrity and access control.
  • Performance: very large FAT32 volumes can suffer from higher fragmentation and slower file operations compared with modern filesystems.

If your workflow includes large individual files or needs strong access controls, stick with exFAT, NTFS, or a modern Linux filesystem depending on target devices.

How this changes developer and IT workflows

  • Fewer third-party format utilities: Teams that standardized on tools to create >32 GB FAT32 volumes can simplify build and imaging scripts, relying on built-in Windows tooling instead.
  • Faster test cycles for embedded/consumer hardware: QA and firmware teams can prepare representative media faster without extra tooling steps.
  • Simplified customer support: When users bring in drives that must be read by legacy devices, support teams can advise formatting in FAT32 directly from Windows.

Example: A device maker producing a USB installer for a media appliance can now script the entire manufacturing step using native Windows commands, avoiding the need to bundle small utilities or maintain cross-platform scripts.

Deciding what to use — a practical cheat sheet

  • Use FAT32 when: you need the highest degree of compatibility with consumer electronics and your files will never exceed 4 GB.
  • Use exFAT when: you need cross-platform support plus files larger than 4 GB and the target devices support exFAT (most modern TVs and computers do).
  • Use NTFS when: the drive will be used mainly with Windows and you need permissioning, journaling, or better handling of very large files.
  • Use ext4 or other Linux-native filesystems when: the storage is dedicated to Linux machines.

Tip for multi-device distribution: consider packaging large installers as split archives (if 4 GB is a problem) or distributing via network-based methods to avoid filesystem headaches altogether.

Potential downsides and what to watch for

  • False sense of safety: people may assume larger FAT32 volumes are as robust as NTFS or exFAT — they are not. Backups are still necessary.
  • Device edge cases: some legacy hardware expects small FAT32 partitions or specific cluster sizes. Test against target hardware before mass deployment.
  • Fragmentation: for drives that will see heavy write/delete cycles (like backup disks), FAT32 can degrade in performance over time.

Broader implications for the ecosystem

1) Less fragmentation in the tooling ecosystem: with Windows handling large FAT32 volumes, small utilities that filled this niche will see reduced usage. 2) Reinforced demand for compatibility-first storage: vendors that need their media to work in a wide array of devices will stick with FAT32 for the near term, delaying a wholesale migration to exFAT. 3) Opportunity for device vendors to modernize: this is a reminder for hardware makers to add exFAT support where feasible; modern file systems offer better performance and capabilities.

This tweak is one of those quality-of-life changes that won’t alter storage architecture for most organizations, but it removes an annoying friction point for developers and support teams who manage cross-device media. Keep the 4 GB per-file rule in mind, test target hardware, and choose the filesystem that balances compatibility with the features you actually need.

Read more