How do I reformat an unrecognized flash drive?
Solution 1:
I got a usb flash drive which was unrecognized by my pc. I followed following steps to make it recognized.
- Right click on Computer icon in desktop.
- Go for manage
- In that option use disk management. You can see available disk in your pc. Your flash drive is seen in that as "disk 1" (note disk 0 is your primary harddrive)
- Change the drive letter if possible.
- If you cant right click and use "delete drive" option.
- Then you can see that Drive as "UNALLOTED"
- Right click on it and go for "New simple Volume"
- Follow the wizard as it instructed. It requires formatting.
- Now it is your Flash Drive Flashing on your desktop.
Enjoy. All the best.
Solution 2:
You can try to use DISKPART
utility in Windows 7.
When you enter that utility, first write LIST DISK
. That will give you list of all recognized drives including USB. Remember number (e.g. 9). Than you can execute
SELECT DISK 9
CLEAN
CREATE PARTITION PRIMARY
FORMAT FS=FAT32 QUICK
That should give you clean slate.
P.S. Do be careful to select correct disk number. If you select wrong number, you will format wrong disk.