low level format for usb hard drive?

Soldato
Joined
29 Jul 2003
Posts
7,685
hi

i am looking for a software for win7 laptop so i can do the low level format on usb external hard drives.

which one you would recommend?

thanks
 
Use diskpart

CMD >
Code:
diskpart
list disk
select disk (number of correct drive here)
clean all

the "all" switch for clean tells it to overwrite - or 'zero' the whole drive. Without this, "clean" just overwrites the MBR and partition tables.

You can then set up the drive with these further commands:

Code:
create partition primary
select partition 1
active
format fs=ntfs
assign
exit
 
Last edited:
Back
Top Bottom