Site icon DED9

How To Format A USB Flash Drive In Windows 10

In Windows 10, you can format a USB flash drive, and this feature is useful in a variety of situations. For example, you may sometimes need to format the external driver to make sure there is no malicious code in it; Or you may be forced to do so due to misreading.

 Sometimes the flash drive file system may not be compatible with your device configuration. You may want to get rid of the files on the USB flash drive, and you may not want any of your personal information to be displayed on someone else’s system. 

There are several situations that you may need to use Flash format to solve.

According to a Windows Central article, for whatever reason, Windows 10 offers several tools that you can use to format all types of storage, including USB flash drives. This report introduces various methods for formatting drives, including File Explorer, Disk Management, Command Prompt, and PowerShell. 

In this tutorial, we will explain step by step what exactly needs to be done to format the USB flash drive with any of the above methods.

Warning: The instructions in this guide will delete all files on the selected drive. If you have an important file, you should back it up before continuing and put it in a secure folder.

Learn USB flash format through File Explorer

To format a USB flash drive using File Explorer in Windows 10, follow these steps:

Note: If you plan to use removable storage (such as USB flash drive) in Windows 10 and macOS, you may want to opt for exFAT for better compatibility.

 If you are thinking of using it on a Linux -based device  , FAT32 is the best choice, even if you are limited to 4 GB files.

Note: The Quick format option only deletes the root file and folder; But the data can be retrieved. If you do not select this option, the full format operation will be performed. Such an operation scans all the different sections and converts them to zero, and eventually all the files and data are completely deleted. As a result, the process may take longer, depending on the size of the drive.

USB flash drive format via Disk Management

The Disk Management tool provides at least two ways to format a USB flash drive. Using the two methods provided to you, you can delete the storage space to rebuild the filesystem table and delete the content format, or to fix a specific partition to fix the memory problems .

Flash drive format

To use Disk Management for USB drive formatting, use these steps:

After completing the steps, the existing files on the drive will be deleted and the data will be re-formatted so that the flash can be stored again.

Clean and format the flash drive

If you encounter any errors or other problems in this area, you can clean the USB drive with Disk Management and do the work from scratch with a new partition and a rebuilt file system.

To clean and format the flash drive, follow these steps:

Note: If you want to select a letter yourself and enter it manually, it is better to find the option you want in the reverse order of the letters of the alphabet (Z, Y, X, etc.).

 Note: You can only use NTFS or FAT32 formats using this method. If you want to access exFAT at the end, you must use the Command Prompt or PowerShell methods.

After completing the steps, a new partition is created and the steps of booting the file system, fixing common problems with the flash drive and other tasks are performed one after another.

If you can’t do the formatting process, your flash is probably broken. In this case, you have to create a new flash drive and use it to move your files. Numerous brands are producing USB flash drives and this product is becoming more advanced.

USB flash drive via PowerShell

You can format the USB flash drive and delete its contents using the PowerShell commands. Or you can use the command-line tool to clear and format the storage space to fix the existing problems.

Formatting a flash drive

To format a USB flash drive using the PowerShell commands, follow these steps:

Format-Volume -DriveLetter DRIVE-LETTER -FileSystem FILE-SYSTEM -NewFileSystemLabel DRIVE-NAME

 For example, the following command code executes drive F with the NTFS filesystem:

 Format-Volume -DriveLetter F -FileSystem NTFS -NewFileSystemLabel workFlash

Format-Volume -DriveLetter DRIVE-LETTER -FileSystem FILE-SYSTEM -Full -Force

In the grammatical code, depending on the file system you want to use, DRIVE-LETTER with the drive letter that you want to format it and FILE-SYSTEM with FAT32, or exFAT or NTFS instead.

If you are a Windows 10 user and do not know which option to use, you can select NTFS to do so. If there is a phrase “Full” in the command code, the format is complete.

 For example, in the following command code, the F drive format is fully executed:

 Format-Volume -DriveLetter F -FileSystem NTFS -Full -Force

 After completing the steps, PowerShell will format the storage space with the settings you have specified and you can use it when the process is complete.

How to clean and format the flash drive

To clean and format a USB flash drive with PowerShell command code, use these steps:

 Get-Disk

 Get-Disk DISK-NUMBER | Clear-Disk -RemoveData  

 In the command code above, change the DISK-NUMBER to the number that represents the flash drive you want to format. For example, the following command code selects and cleans Disk 2:

 Get-Disk 2 | Clear-Disk –RemoveData

 New-Partition -DiskNumber DISK-NUMBER -UseMaximumSize

 In this command, change the DISK-NUMBER to a number that represents the storage space you want. This example creates a new partition using all the space in drive number 2:

New-Partition -DiskNumber 2 -UseMaximumSize

 Get-Partition -DiskNumber DISK-NUMBER | Format-Volume -FileSystem FILE-SYSTEM -NewFileSystemLabel DRIVE-NAME

In this command code, replace DISK-NUMBER with the number that indicates the storage location in the system, then change the FILE-SYSTEM to NTFS, FAT32 or exFAT and DRIVE-NAME as the name on which you want the drive to be displayed in File Explorer. Change. In this example, drive 2 is selected and formatted using the NTFS file system:

Get-Partition -DiskNumber 2 | Format-Volume -FileSystem NTFS -NewFileSystemLabel workFlash

Get-Partition -DiskNumber DISK-NUMBER | Set-Partition -NewDriveLetter DRIVE-LETTER

In this command code, replace the DISK-NUMBER number that identifies the memory stored in the system, and change the letter that you want the drive to represent in File Explorer to DRIVE-LETTER The following example sets E as the drive letter for disk number 2:

 Get-Partition -DiskNumber 2 | Set-Partition -NewDriveLetter E

 After completing the steps, PowerShell removes any USB storage information for troubleshooting, including data corruption, protection against unknown drives, and more . Then the steps to create a new partition and configure the file system to store the files begin.

Learn USB flash format with Command Prompt

You can format the USB flash drive via Command Prompt . You can also use this tool to clean the drive and start working with the new partition and file system.

USB flash drive format

Use the following steps to quickly or completely format a USB flash drive with Command Prompt:

 format VOLUME: / v: FLASHDRIVE-LABEL / fs: FILE-SYSTEM / q

The dial, make sure the VOLUME with the letter which represents memory is desired, Flashdrive-LABEL with the name you want to drive in File Explorer appears and FILE-SYSTEM with one of the available options, including FAT32, exFAT or NTFS replace . 

This example executes the fast format of drive E:

format G: / v: workFlash / fs: NTFS / q

 format VOLUME: / v: FLASHDRIVE-LABEL / fs: FILE-SYSTEM

 This example executes a complete format of drive E:

 format E: / v: “workFlash” / fs: NTFS

After completing the steps, the drive will be formatted with the settings you specified.

USB flash drive formatting

Clean and format the flash drive with command-line, use these steps:

 diskpart

 list disk

 select disk DISK-NUMBER

 Be sure to replace the DISK-NUMBER with the number indicating the drive you want to format in the command code. In the example below, the command driver selects the flash driver, which is represented by the number 2.

 select disk 2

 clean

 create partition primary

 format fs = FILE-SYSTEM label = DRIVE-NAME quick

In the command code, replace FILE-SYSTEM with one of NTFS, FAT32 and exFAT . Also replace DRIVE-NAME with the name you want to put on the drive. 

Keep in mind that if you do not specify that you want the process to be done quickly, the formatting will be complete. In this example, the desired memory is quickly formatted using the NTFS file system and renamed to workFlash:

 format fs = NTFS label = workFlash quick

 Assign

 Exit

 After completing the above steps, the command-line will  remove any information from the USB flash drive . This tool creates a new partition and configures a compatible filesystem to store the data.

Exit mobile version