Advertisement
101Grapes

How to Fix USB Drive that isnt showing full storage space in Windows

Mar 13th, 2022
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. Solution 1. Use Diskpart to make pen drive show full space
  2.  
  3. The most simple way is to delete paritions on pen drive. Generally, you can use Windows Disk Management, but it does not allow you to delete volume on removable disk or delete/format system related partition. Thus, it comes to another Windows native tool named Diskpart.
  4.  
  5. Step 1: Connect the pen drive to your computer and make sure it is detected.
  6.  
  7. Step 2: Search “Command Prompt” in the Start menu. Right click its shortcut and select “Run as administrator”.
  8.  
  9. Step 3: Type “diskpart” → Enter.
  10.  
  11. Type Diskpart
  12.  
  13.  
  14. Step 4: Type “list disk” → Enter. It will show you disks connected to the computer.¬¬
  15.  
  16. List Disk
  17.  
  18.  
  19.  
  20. Step 5: Type “select disk #” → Enter. (Replace # with the number which is identified as the pen drive in your computer.)
  21.  
  22. Select Disk 2
  23.  
  24. Note: Be careful when entering the number, otherwise everything on the disk you choose will disappear.
  25.  
  26.  
  27.  
  28. Step 6: Type “clean” → Enter.
  29.  
  30.  
  31.  
  32. Step 7: Type “create partition primary” after you see “Diskpart succeeded in cleaning the disk”. If you want to create more than one partition on the pen drive, specify the partition size by this syntax: create partition primary size=#. For example, to create a 4000MB partition, run the command “create partition primary size=4000”.
  33.  
  34. Create Partition Primary
  35.  
  36.  
  37.  
  38. When finish, leave the command window then you can format the pen drive easily through Disk Management as you wish. Of course, you can also format drive with Diskpart by executing command “format fs=”.
  39.  
  40. However, using Diskpart to solve USB drive shwoing less space takes certain risks, especially for computer green hands. It is inconvenient to distinguish which disk is exactly the pen drive. Besides, if typing something wrong in the command window, no one could guarantee what will happen next. So here introduce another useful and free partition manager.
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement