There is a process you can use to format unreadable drives from the command line, I often find it necessary on USB pens that are causing me real headaches.
Open up CMD (open it as administrator if you're running Windows Vista or 7 and UAC) and type the following:
diskpart
In the prompt type in:
list disk
This will present a list of disks, e.g.:
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 149 GB 0 B
Disk 1 Online 7751 MB 0 B
As you can see from the example I have a 150GB disk, disk 0, and an 8GB disk, disk 1, being the USB pen. The next step is completely wipe the USB device:
DISKPART> select disk 1
Disk 1 is now the selected disk.
DISKPART> clean
DiskPart succeeded in cleaning the disk.
Finally we need to create a primary partition on the disk and format it, in this case as fat32:
DISKPART> select disk 1
Disk 1 is now the selected disk.
DISKPART> create partition primary
DiskPart succeeded in creating the specified partition.
DISKPART> format fs=fat32 quick
100 percent completed
DiskPart successfully formatted the volume.
DISKPART> exit
Once you've completed the above steps you should have completely reformatted your USB and it will be ready for use.
N.B. if you get access denied at any point during this process it is likely that you need to run the CMD prompt as admin.
If none of the solutions suggested in the 3 answers worked for you, your pendrive is damaged, no doubt about that. I had faced this issue early and was unable to repair it. – Tomin Jacob – 2014-09-30T01:44:03.507
Could you clarify your OS? – ephsmith – 2012-07-06T14:06:22.713
@ephsmith I added the generic Windows tag because of "My Computer" and drive "H". – Matteo – 2012-07-06T14:08:10.777
@ephsmith Its definitely Windows according to the Error Messages. – Akshat Mittal – 2012-07-06T14:09:51.570
Semantics... It'a clearly Windows. I guess I should've been more clear. Which version of windows. ? – ephsmith – 2012-07-06T14:15:32.687
its windows xp sp3 – Deb – 2012-07-06T14:43:20.720