Skip to main content

How To Repair Corrupted Memory Card/USB Hard Drive

This method is based on a simple command prompt trick that will forcely format your external drive and then after that you can use it.

But firstly note that this will delete your all files from USB pendrive and if you have any of important data in then use recovery tool to restore these data before implementing this method. So just follow the simple steps that i have discussed below

  First insert Memory Card/USB Hard Drive with your computer through your USB port and remove all other drives if you have connected.

  Now open my computer and note down the drive letter of your USB or memory card.

  Now click on start and then type cmd and then press enter.a

  Now type DISKPART in command prompt and pop up might appears asking for permission, click onb1 ok.

  Now type list disk there and you will see all the disk will get listed therec1.

  Now there you will see your external drive, note down its disk number.

  Now type select disk disk_number (for exp select disk 4) and press enter.

  Now type clean and press enter.

  Now type create partition primary and then press enter.

  Now type active and press enter.

  Now enter the command select partition 1.

  Now type  format fs=fat32 and press enter.

  Thats it it will take some time and after that your drive will get successfully format and become ready to use./n _________________________

Comments

Popular posts from this blog

What is SQL ?

SQL (Structured Query Language) is a standardized programming language used for managing relational databases and performing various operations on the data in them. Initially created in the 1970s, SQL is regularly used by database administrators, as well as by developers writing data integration scripts and data analysts looking to set up and run analytical queries. The uses of SQL include modifying database table and index structures; adding, updating and deleting rows of data; and retrieving subsets of information from within a database for transaction processing and analytics applications.  Queries and other SQL operations take the form of commands written as statements -- commonly used SQL statements include select, add, insert, update, delete, create, alter and truncate. _________________________