How to format a USB drive as FAT32 on Windows

You can format a drive as FAT32 from File Explorer, Settings, Command Prompt, and PowerShell, and in this guide, I will show you how.

Windows 11 FAT32 format
Windows 11 FAT32 format / Image: Mauro Huculak
  • To format a drive with FAT32 on Windows 11 (or Windows 10), open File Explorer, click on “This PC,” right-click the drive, choose “Format,” select “FAT32,” confirm label, and click “Start.”
  • You can also use the Command Prompt and PowerShell to convert a USB flash drive with the FAT32 file system.
  • File Explorer limits the format size to 32GB, but starting on Windows 11 build 27686, you can format drives up to 2TB.

UPDATED 8/23/2024: On Windows 11 (and 10), you can format drives FAT32, and in this guide, I will show you multiple ways to complete this configuration through File Explorer, Settings, Command Prompt, and PowerShell.

Although you would typically use NTFS as the file system for drives connected to Windows, sometimes, you may still need to use FAT32 since this file system is often required on USB flash drives to store the BIOS file to update the firmware on your computer’s motherboard. Printers may require the file system to read images you want to print directly from the USB. If you have a digital camera, you may need to format the SD Card with FAT32 to make the storage available on the device. Other platforms may also need this file system.

What’s FAT32?

FAT32 (File Allocation Table 32) has been a widely used older file system format for many years due to its simplicity and compatibility (Windows, macOS, Linux, etc.). It’s still relevant today, especially for devices that require broad compatibility, as I previously mentioned.

However, it has some limitations. For example, it has a 4GB limit size for files, meaning you cannot store those larger than 4GB. The maximum partition size can be 32GB, but in the latest version of Windows 11, the Format tool has been updated to support up to 2TB drives. Also, it has a slower performance than the NTFS file system.

Usually, you would only use FAT32 for external and USB flash drives, not for the primary or secondary internal drives. However, it’s possible to format internal drives as long as the partition you want to format is equal to or less than 32GB. (Currently, if you want to format a larger partition, you would have to choose the exFAT file format.)

FAT32 vs. exFAT?

In addition to FAT32, you will also find the exFAT (Extensible File Allocation Table) option, a similar file system, which has been created to overcome the limitations of FAT32. For example, exFAT has a file limit of 16EB, while the partition can be as big as 128PB.

What’s a file system?

A file system is like a librarian for your computer. It organizes and manages the system and your files and folders stored on a drive so you can easily find and access them.

In this guide, I will explain the quick steps to format a drive using the legacy file system on Windows 11 as well as on Windows 10.

Format USB flash drive using FAT32 on Windows

To format a USB flash drive (of up to 32GB) using the FAT32 file system, connect the storage to the computer and use these steps:

  1. Open File Explorer.

  2. Click on This PC from the left pane.

  3. Right-click the USB flash drive and choose the Format option.

    File Explorer Format option

  4. Choose the FAT32 option in the “File system” setting.

    Drive format with FAT32 file system

  5. Use the default size for the “Allocation unit size” setting.

  6. Confirm a name for the drive in the “Volume label” setting.

  7. Check the Quick Format option.

  8. Click the Start button.

  9. Click the OK button.

  10. Click the OK button again.

Once you complete the steps, the storage will be formatted using FAT32.

It’s important to note that starting on Windows 11 build 27686, Microsoft is updating the tool to support drives up to 2TB.

It’s important to note that Windows will usually choose the default allocation unit size based on the disk size and file system. For most users, sticking with the default is recommended. The “Allocation unit size” is the smallest unit of storage space a file system can allocate on a disk. A smaller allocation unit size is better for storing many small files, preventing wasted space. A larger allocation unit size can improve performance when storing large files.

If the Format tool is not showing a specific drive, this is expected behavior since the tool only allows removable storage under 32GB. Only on devices running Windows 11 build 27686 and higher releases will you see drives larger than 32GB and less than 2TB. If you must format a specific storage that doesn’t appear in the graphical tool, then you can use the Command Prompt or PowerShell options.

You can also follow these instructions in my video tutorial on my YouTube channel. (Remember to like and subscribe.)

Format USB flash drive using FAT32 from Settings

To format a drive as FAT32 from the Settings app on Windows 11, use these steps:

  1. Open Settings.

  2. Click on System.

  3. Click the Storage page.

  4. Click on “Advanced storage settings” under the “Storage management” section.

  5. Click the Disks & volumes setting.

    Advanced storage settings

  6. Select the drive you want to format.

  7. Click the Properties button on the volume (not the drive).

    Settings open drive properties

    Quick tip: If the drive is empty, click the “Create volume” button and choose the drive label, letter, and file system.
  8. Click the Format button.

    Windows 11 Settings format option

  9. Confirm a drive label. 

  10. Select the FAT32 option in the File System setting.

    Windows 11 Settings format FAT32

  11. Check the “Perform a quick format” option.

  12. Click the Format button.

After you complete the steps, the USB flash drive will be formatted using the FAT32 file system.

Format USB flash drive using FAT32 with Command Prompt

To format a USB flash drive using the FAT32 file system, connect the storage to the computer and use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and choose the Run as administrator option.

  3. Type the following command to format the USB drive using FAT32 on Windows 11 (or 10) and press Enter:

    format /q /fs:fat32 d: /v:label

    Command Prompt format drive using FAT32

    In the command, change “d:” for the drive letter of the drive you want to format. Also, change the “label” for the name you want to use on the drive. The “q” option is to perform a “quick” format. If you don’t use this option, the full format can take a long time.

  4. Press Enter to continue.

After you complete the steps, the existing partition will be formatted with the FAT32 file system using the default allocation unit size.

Command Prompt FAT32 size error
Command Prompt FAT32 size error / Image: Mauro Huculak

You cannot run this command on drives larger than 32GB. If you do, you will receive a message stating, “The volume is too big for FAT32. Format failed.”

Format USB flash drive using FAT32 with PowerShell

To format a flash drive using the FAT32 file system through PowerShell, connect the storage to the computer and use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and choose the Run as administrator option.

  3. Type the following command to format the USB drive using FAT32 and press Enter:

    Format-Volume -DriveLetter D -FileSystem FAT32 -NewFileSystemLabel label

    PowerShell format using FAT32

    In the command, change “D” for the drive letter of the drive you want to format. Also, change the “label” for the name you want to use on the drive. If you want to perform a full format, you also have to append the -Full -Force options. For example, Format-Volume -DriveLetter D -FileSystem FAT32 -NewFileSystemLabel label -Full -Force.

  4. Press Enter to continue.

Once you complete the steps, the command will perform a quick format using the FAT32 file system.

PowerShell Format-Volume FAT32 size error
PowerShell Format-Volume FAT32 size error / Image: Mauro Huculak

You cannot run this command on PowerShell on drives larger than 32GB. If you do, you will receive a message stating, “Format-Volume: Size Not Supported.”

You can use these instructions as long as the drive has an existing partition. If the drive is empty, it won’t even appear on File Explorer, and you must create a partition before you can format it.

In this guide, I’m only showing three ways to format a USB flash drive, but you can also use Disk Management and the Settings app to format a drive on Windows 11.

Update August 23, 2024: This guide has been updated to ensure accuracy and reflect changes to the process.

About the author

Mauro Huculak is a Windows How-To Expert who started Pureinfotech in 2010 as an independent online publication. He has also been a Windows Central contributor for nearly a decade. Mauro has over 15 years of experience writing comprehensive guides and creating professional videos about Windows and software, including Android and Linux. Before becoming a technology writer, he was an IT administrator for seven years. In total, Mauro has over 21 years of combined experience in technology. Throughout his career, he achieved different professional certifications from Microsoft (MSCA), Cisco (CCNP), VMware (VCP), and CompTIA (A+ and Network+), and he has been recognized as a Microsoft MVP for many years. You can follow him on X (Twitter), YouTube, LinkedIn and About.me. Email him at [email protected].