Plugged in USB drive, launch a command prompt. Do this by searching for cmd.exe in the Start menu (or Start screen in Windows 8). In Windows XP, click Start then Run, and type cmd.exe in the box.
NOTE: you may need to run Cmd.exe with administrator privileges if you see an “access is denied” message.
To do that, right-click on the shortcut and choose Run as administrator. In Windows 8, simply choose Command prompt (admin).
Now, type the following, pressing Enter after each command:
1. diskpart
2. list disk
3. select disk x (where x is the number of your USB flash drive – use the capacity to work out which one it is)
4. attributes disk clear readonly
5. clean
6. create partition primary
7. format fs=fat32 (you can swap fat32 for ntfs if you only need to use the drive with Windows computers)
8. exit