Skip to content

Instantly share code, notes, and snippets.

@Pradumnasaraf
Created January 27, 2024 19:40
Show Gist options
  • Save Pradumnasaraf/ea9a7ffa5d7936fb0a82fa49ae98c0ff to your computer and use it in GitHub Desktop.
Save Pradumnasaraf/ea9a7ffa5d7936fb0a82fa49ae98c0ff to your computer and use it in GitHub Desktop.
Format a Hard Drive/SD Card/Pen Drive Using the Command Prompt

STEP 1: Open Command Prompt As Administrator

STEP 2: Open Diskpart

diskpart

STEP 3: List all the Disks

list disk

STEP 4: Select the Drive to Format from the list

select disk 0

STEP 5: Clean the Disk

clean

STEP 6: Create Partition Primary

create primary partition

STEP 7: Format the Drive

format fs=ntfs/fat

STEP 8: Assign a Drive Letter

assign
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment