How to Format a Flash Drive in Windows 11

Formatting an external flash drive in Windows 11 allows you to erase all stored data, fix corrupted sectors, and configure the appropriate file system for your needs. This guide explains the differences between exFAT, NTFS, and FAT32, followed by clear, step-by-step methods to format your USB drive using File Explorer, Disk Management, and Command Prompt.


Which File System Should You Choose?

Before formatting, select the file system that best fits your use case:


Method 1: Format Using File Explorer (Quickest Method)

  1. Connect your external flash drive to a USB port on your Windows 11 PC.
  2. Press Windows Key + E to open File Explorer, then click This PC in the left sidebar.
  3. Under Devices and drives, right-click your flash drive and select Format….
  4. In the format window:
    • Click the File system dropdown menu and choose FAT32, exFAT, or NTFS.
    • Leave the Allocation unit size at its default setting.
    • (Optional) Enter a name in the Volume label field.
    • Ensure Quick Format is checked.
  5. Click Start, then click OK when the warning prompt appears to confirm the process.

Method 2: Format Using Disk Management

  1. Right-click the Start button on the taskbar and select Disk Management.
  2. Locate your flash drive in the list at the bottom of the window.
  3. Right-click the drive’s partition and select Format….
  4. Set the Volume label and select your preferred File system (FAT32, exFAT, or NTFS).
  5. Check the box for Perform a quick format.
  6. Click OK, then click OK again to confirm the data erasure.

Method 3: Format Using Command Prompt (Advanced)

  1. Press Windows Key + S, type cmd, right-click Command Prompt, and select Run as administrator.
  2. Type diskpart and press Enter.
  3. Type list disk and press Enter to see all connected drives.
  4. Identify your flash drive’s number (e.g., Disk 2), then type select disk X (replace X with your actual drive number) and press Enter.
  5. Type clean and press Enter to clear existing partitions.
  6. Type create partition primary and press Enter.
  7. Type one of the following format commands based on your preferred file system:
    • For exFAT: format fs=exfat quick
    • For NTFS: format fs=ntfs quick
    • For FAT32: format fs=fat32 quick
  8. Press Enter to execute the format.
  9. Type assign and press Enter to assign a drive letter, then type exit to close Diskpart.