Unable To Complete The Format Solved, Repair Damaged/Corrupted/Write Protected Memory Card/Pen Drive

DISKPART



Go to CMD (Command Prompt) with administrator privileges then follow bellow instruction  

Type diskpart and hit Enter (Open Disk Manager)

DISKPART> 

Type list disk and hit Enter (Show list of Disk)

list disk

show your Fixed and Removable Drive

Disk 0 is Fixed Drive
Disk 1 is Removable Drive

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          931 GB  1024 KB        *
* Disk 1    Online           14 GB    14 GB

Now select removable drive (Disk 1)

DISKPART> select disk 1
Disk 1 is now the selected disk.

Type clean and hit Enter (Format Drive)
DISKPART> clean
DiskPart succeeded in cleaning the disk.

Create Partition to your Drive
Type create partition primary and hit Enter

DISKPART> create partition primary
DiskPart succeeded in creating the specified partition.

Select Primary Partition (partition 1)
Type select partition 1 and hit Enter

DISKPART> select partition 1
Partition 1 is now the selected partition.

Show partition List
Type list partition and hit Enter

DISKPART> list partition
  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
* Partition 1    Primary             14 GB  1024 KB

Active Drive Partition 
Type active and hit Enter

DISKPART> active
DiskPart marked the current partition as active.

Format again with FAT 32
Type format quick fs=fat32 and hit Enter

DISKPART> format quick fs=fat32
  100 percent completed
DiskPart successfully formatted the volume.

Now assign the active Drive
Type assign and hit Enter
DISKPART>assign

Complete

Comments