In the following post we will see how to restore the actual storage capacity of your pen drive. Sometimes it happens
that your pen drive show smaller storage capacity than original storage capacity. For example If you have a 8 GB pen drive which has original
storage capacity of 7.18 GB but now it is showing total space 4.32 GB. Usually it happens when you make your pen drive bootable for linux or other
Operating Systems or your pen drive got older.  
To get back your pen drive with original storage capacity you need to do following things:
1) Mount your pen drive into windows operating system
2) Open cmd as administrator
3) Execute following command in the cmd
 C:\\Windows\System32>diskpart
 
 your cmd will change C:\\Windows\System32> to DISKPART>
        Now type the below command:
 
 DISKPART>list disk
 
 It gives the list of all disk partition and available devices along with
        index(start with 0) like
 
 Disk 0 Online 298 GB 0 B
 Disk 1 Online 4530 MB 235 B
 
 
 
 
 You need to select the pen drive by index, 
        which you can decide based on memory showing in same line.
        Execute command:
 
 DISKPART>select disk 1   [In your case index may differ than 1]
 
 
 
 
 
 Now you have to clean the disk and crate partition.
        To do this use following commands:
 
 DISKPART>clean
 DISKPART>create partition primary
 DISKPART>exit
 
 
 
Note :- Play with memory management is very critical process. Do the process carefully nevertheless If any unfortunate things occur, Only you will be responsible for that.
Comments
Post a Comment