Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
There may come a time when a USB drive is formatted in an unusual file system, such as when used with a Smart TV, or when a large portion of the device is allocated to an unmanageable EFI partition. While Windows’ built-in Disk Management utility can handle basic formatting tasks, it is often unable to delete these protected partitions.
To fully erase and reformat your USB drive, follow this step-by-step guide using Windows Diskpart, a powerful command-line utility.
This process will completely erase all data on the USB drive. Proceed only if you are certain you no longer need any files stored on it.
cmd
.Once the Command Prompt window opens, type:
diskpart
Press Enter to launch the Diskpart utility.
To see all detected storage devices, enter the following command:
list disk
This will display all storage drives connected to your system.
Important: Each drive is labeled as Disk 0, Disk 1, Disk 2, etc. Identify the USB drive by checking its size.
Once you identify your USB drive, select it by replacing X
with the correct disk number:
select disk X
⚠ Double-check the selected disk! If you choose the wrong one, you may erase your primary hard drive.
To confirm the selection, type:
detail disk
This will display details about the selected disk to ensure it’s the correct one.
List all partitions on the selected disk:
list partition
If any partitions exist, delete them one by one. Start with the first partition, replacing X
with the partition number:
select partition X
delete partition override
Repeat this step for all remaining partitions.
Once all partitions are deleted, create a new primary partition:
create partition primary
Now, format the drive using your desired file system. For most USB drives, FAT32 is a good choice for compatibility, but if you need to store files larger than 4GB, choose NTFS instead.
For FAT32:
format fs=fat32 quick
For NTFS:
format fs=ntfs quick
For exFAT (recommended for cross-platform usage on Windows and macOS):
format fs=exfat quick
The quick parameter speeds up the process by skipping a full surface scan.
To make the USB drive accessible in File Explorer, assign it a letter:
assign
You can specify a particular letter by using:
assign letter=Z
(Replace Z
with your preferred letter.)
Once the process is complete, exit the utility:
exit
Now, your USB drive is fully formatted and ready for use.
clean
This will wipe all partitions and data from the selected drive.This guide ensures you can properly erase and reformat any USB drive, making it usable for new storage needs. 🚀