Restoring USB drive capacity

Restore USB - flash drive recovery
Restore USB - Recover Lost Space on USB Drive

Restoring USB drives back to full capacity. Recover lost space on USB drive or reset a USB flash drive to factory settings or original state. After having tooled around with your dd raw image overwritten or multi partitioned flash drive, you might find it necessary to revert back to a single Fat, Fat32, exFAT or NTFS partition.

USB drive not showing up?

If your USB drive is not showing up, you'll need to restore it back to its original state by performing a reformat. Which essentially results in a reset USB. Afterwards, your removable drive should be detected, readable, and useable again by all computers.

It is often necessary to restore or repair corrupted USB drives after working with tools such as Etcher to burn an ISO or Win32 Disk Imager to write an image to a removable device. Depending on the raw image file used, these tools can make your USB drive appear to be corrupted or unreadable. In which case, the following methods can be used to fix a corrupted flash drive.

In some cases, the flash drive might not even be assigned a drive letter and can not be detected by your Computer. This is because these tools use raw-write style dd tasks to put an .img or .iso file on the drive. As a result, the boot record, partition table data, and filesystem becomes overwritten with that of the raw image file.

Restoring USB drives from Windows, Linux, or Mac OS

Windows users can follow the instructions below to fix or repair a corrupted USB drive or restore a flash drive. Here we are using Diskpart, the SD Formatter, or BOOTICE for formatting a USB drive. Mac OS users should also be able to use the SD tool. For those working from Linux this task can easily be accomplished via fdisk.

How to Restore USB flash drive using diskpart in Windows

To restore USB using diskpart for formatting a USB drive:

  1. Open a command Prompt as administrator (cmd.exe)
  2. Type diskpart
  3. Next type list disk
  4. Type Select Disk X (where X is the disk number of your drive).
  5. Type clean
     * If Error, See Note Below
  6. Next type create partition primary
  7. Type Format fs=exfat quick
    Note: (for 32GB and smaller drives, use fs=fat32) instead.
  8. Then type active
  9. Next type assign
  10. Finally, type exit to quit
DiskPart - Recover and Restore USB Flash Drive
Using DiskPart to recover lost space on a USB Drive
DiskPart Has Encountered an Error: Access is Denied

If you encounter an error like this, simply repeat step 5.

DISKPART> clean
DiskPart has encountered an error: Access is denied.
See the System Event Log for more information.

If repeating DiskPart clean does not work, you'll need to Fix the Corrupted USB Flash Drive with dd. This appears to be because Windows is unable to detect the Linux file format.

Restoring USB Drives with SD Formatter Tool

Windows and or Mac OS users can use the SD Formatter Tool for restoring a USB drive - by formatting it back to its original state. Though originally designed to be used on SD cards, this tool can be used to reformat a flash drive as well.

  1. Download SD Formatter and launch the tool.
  2. Select your USB flash drive from the Drive: drop list.
  3. Choose your Format Option.
  4. Then press the Format button.
SD Formatter - Restoring USB Flash Drive
Using SD Formatter to Restore a USB Flash Drive

Using BOOTICE to Restore or Repair Corrupted USB drives

Windows users can also use BOOTICE to format and restore USB flash drives and attempt to fix or repair them, if they appear corrupted. The tool uses a simple and intuitive GUI.
NOTE: It looks like this software may no longer be in active development as the last revision was released in 2016. A download link to the latest available version is being provided.

  1. Download BOOTICE, extract, then run Pauly's Tool.
  2. Once BOOTICE is running:
    (1.) Select your drive from the list, (2.) Click Parts Manage.

    Use BOOTICE to Restore USB flash drive
    Using BOOTICE to reset USB
  3. Then, (1.) Click Repartitioning.
    BOOTICE Repartition
  4. (1.) Under Disk Mode, choose USB-FDD, USB-HDD, or USB-ZIP mode
    (I prefer USB-HDD as it works with most BIOS systems)
    (2.) Click OK.
    Repair Corrupted USB - Repartitioning with BOOTICE

Restoring USB Drives using Linux

For wiping, resetting, partitioning and formatting a USB drive from a Linux terminal, you can use the following commands:

A. First we need to delete the old partitions that remain on the USB key.

  1. Open a terminal Ctrl+Alt+T and then type sudo su.
  2. Type fdisk -l and note which letter belongs to your flash drive.
  3. Then type fdisk /dev/sdx (replacing x with your drive letter).
  4. Next type d to proceed to delete a partition.
  5. Type 1 to select the 1st partition and press enter.
  6. Then type d to proceed to delete another partition, if necessary. (fdisk should automatically select the second partition).

B. Next we need to create a new partition.

  1. Type n to make a new partition.
  2. Then type p and press enter to make this partition primary.
  3. Type 1 and then press enter to make this the first partition.
  4. Next press enter to accept the default first sector.
  5. Press enter again to accept the default last sector.
  6. Type w to write the new partition information to the USB key.
  7. Type umount /dev/sdx1 (replace x with your drive letter).

C. The last step is to create the fat32 or exFAT filesystem.

  1. For Fat32, type mkfs.vfat -F 32 /dev/sdx1 (replacing x with your drive letter)
  2. For exFAT, (if using Ubuntu or Debian), type apt install exfat-utils and then type mkfs.exfat /dev/sdx1 (again replace x with your drive letter)

Repair Corrupted USB drives or SD cards with dd

USB drive not showing up or still isn't being detected? If none of the options mentioned above worked to help you restore USB, or if you want to try another way to attempt to fix or repair a corrupted USB flash drive or SD card. Here is a last resort you can try before tossing your USB drive or sd card into the trash. Windows users will need to download dd.exe to follow along.

  1. Open up a terminal (or command prompt in Windows)
  2. Next, we will wipe out the partition table and leading filesystem information.
    For Windows users using dd.exe. Replacing X with your actual USB drive letter, type the following and then press enter;

    dd if=/dev/zero od=X: count=1 bs=4096 --progress

    If that fails, try the following, instead. Replace 1 with your disk number which can be found by running diskmgmt.msc

    dd if=/dev/zero of=\\?\Device\Harddisk1\Partition0 count=1 bs=4096 --progress

    For Linux users. Replacing X with your actual USB device, type the following and then press enter;

    dd if=/dev/zero of=/dev/sdX count=1 bs=4096 status=progress
  3. Then try to format your thumb drive using any method you want.

That's all there is to it, several methods you can use from Windows, Linux, or MacOS operating systems for formatting a USB to restore USB drives back to full capacity. You should now have a restored USB key with a single exFAT or fat32 formatted partition that can be read from any computer. There you have it. Several methods that should help you to repair corrupted USB flash drives, formatting and restoring USB devices back to their original state with full capacity.

Note: You can also Recover Lost USB Storage Space. This is especially useful if you've used dd to raw write an ISO image to your drive, and now the device appears smaller than its original capacity and is no longer usable for traditional storage purposes.