How to Format Your USB Drives in Windows 11

If your USB drive has become slow, corrupted, unreadable, or cluttered with old files you no longer need, formatting it is often the quickest way to bring it back to life. Windows 11 gives you multiple ways to format a flash drive—whether you prefer File Explorer, Disk Management, Command Prompt, or PowerShell.

In this guide, we’ll walk you through every method in a clear, beginner-friendly way so you can choose the one that works best for you.

1. Format a USB Drive Using File Explorer (Easiest Method)

File Explorer is the simplest and quickest way to format a USB drive on Windows 11. Here’s how to do it:

  1. First, plug your USB drive into your Windows 11 PC and open File Explorer from the taskbar or by pressing Win + E.
  2. After that, go to the left sidebar and select This PC to see all your connected drives.
  3. Next, right-click your USB drive and choose Format from the context menu.
  4. You’ll now see the Format window. Pick a File System (FAT32, exFAT, or NTFS).
    • FAT32: Best for compatibility (supports up to 4GB files).
    • exFAT: Works on Windows, macOS, Linux, and supports large files.
    • NTFS: Best for Windows-only use with security features.
  5. Choose Allocation Unit Size or simply leave it on Default.
  6. Enter a name in the Volume Label field (optional).
  7. If you want a quicker process, enable the Quick Format option.
  8. Finally, click Start and confirm the prompt that appears.

That’s it! Your USB drive will be formatted within a few seconds.

2. Format a USB Drive Using Disk Management

Disk Management gives you more control, especially if the drive is corrupted or not appearing in File Explorer.

  1. Begin by right-clicking on the Start button and selecting Disk Management from the menu.
  2. Once the window opens, scroll down and locate your USB drive.
  3. Right-click the partition on your USB drive and choose Format.
  4. In the Format window, select your File System, Allocation Unit Size, and type a Volume Label if needed.
  5. Click OK, and then confirm your action.

If your USB drive shows as Unallocated, you can right-click the area and choose New Simple Volume to create a new partition and format it.

Sometimes I wish I were a fly on the wall in Microsoft’s design meetings—Disk Management still feels like a Windows XP relic, yet it gets the job done every time.

3. Format a USB Drive Using Command Prompt (CMD)

If you like working with commands—or if Windows can’t format your drive through the usual interface—Command Prompt is a powerful option.

  1. Start by opening the Start Menu, typing cmd, and selecting Run as administrator.
  2. In the Command Prompt window, type the following command and press Enter: diskpart
  3. Next, type: list disk This shows all storage devices. Find your USB drive by looking at the size.
  4. Select the USB drive by entering: select disk X (Replace X with the disk number.)
  5. Clean the drive using: clean
  6. Now create a new volume: create partition primary
  7. Format the drive using: format fs=exfat quick You can replace exfat with fat32 or ntfs.
  8. Finally, assign a drive letter: assign

Your USB drive is now freshly formatted and ready to use.

4. Format a USB Drive Using PowerShell

PowerShell offers even more flexibility if you prefer a more modern command-line experience.

  1. Open the Start Menu, search for PowerShell, and click Run as administrator.
  2. To view all storage volumes, enter: Get-Disk
  3. Find your USB drive by checking the Size column.
  4. Now wipe the drive with: Clear-Disk -Number X -RemoveData
  5. Initialize the disk using: Initialize-Disk -Number X
  6. Create a new partition: New-Partition -DiskNumber X -UseMaximumSize -AssignDriveLetter
  7. Finally, format the drive: Format-Volume -DriveLetter D -FileSystem exFAT -NewFileSystemLabel "USB" Replace D with your actual drive letter.

This method is great when you need full control over drive preparation.

5. Format a USB Drive Using the Settings App

Windows 11 also lets you format USB drives from the Settings app—although it’s a little tucked away.

  1. Open Settings using Win + I.
  2. In the left panel, click System.
  3. Scroll down and select Storage.
  4. Under Storage Management, choose Advanced storage settings.
  5. Click Disks & volumes.
  6. Select your USB drive and click Format.
  7. Choose the file system, name the drive, and click Format.

While this method is less popular, it’s clean and modern.

6. Which File System Should You Choose? (Quick Guide)

Choosing the right file system depends on how you plan to use your USB drive:

  • FAT32:
    Best for broad compatibility, smart TVs, cameras, and older devices. But it doesn’t support files larger than 4GB.
  • exFAT:
    The best all-around choice today. Works on almost every platform and supports large files.
  • NTFS:
    Great for Windows-only machines and drives used for backups or apps.

If you’re not sure—go with exFAT.

Wrapping Up

Formatting a USB drive on Windows 11 is incredibly easy once you know where to look. Whether you prefer File Explorer, Disk Management, CMD, PowerShell, or the Settings app, Windows gives you plenty of options. We walked through each method step-by-step so you can pick the one that fits your situation—whether you’re fixing a corrupted drive, preparing it for another device, or just clearing up space.

Posted by Arpita

With a background in Computer Science, she is passionate about sharing practical programming tips and tech know-how. From writing clean code to solving everyday tech problems, she breaks down complex topics into approachable guides that help others learn and grow.