I have formatted a usb flash drive withs size of 2,5 GB and now it shows me that it's size is 8 MB. How can I fix it to be 2,5 GB again?
2 Answers
Here is an article with 3rd party software that may help: Restore USB Flash Disk Back to Full Capacity
The article suggests that after removing a malware or after formatting the USB the capacity will not change and it shows step - by - step instructions how to restore your USB back to full capacity by using Bootice application.
There are also step by step instructions without the 3rd party software:Best Way To Restore USB Drive Back to Full Capacity!
From the article:
Open Run ( Windows + R ).
Type Diskpart and press Enter ( diskpart ).
Type list disk ( list disk ).
Type select disk 1 ( select disk 1 ).
Type clean and enter ( clean ).
Now you USB will show 0Bytes. Don't panic. Just unplug USB and insert again.
The system will prompt for fromat and do format.
Hope this helps
In Windows you can use Diskpart (commandline) and Format (GUI):
- diskpart
- list disk
- select disk X (X = correct disk No.)
- clean
- create partition primary
- list partition (just to be sure)
- exit (go back to GUI)
- format the disk
Worked for me in W7/64.
- 1