Why does formatting the disk in Windows take 10 minutes, but when I type "format c:\" in CMD it only takes several seconds?

link|improve this question
Belongs on superuser? Or ...? – Mark Aug 23 '10 at 17:38
feedback

migrated from stackoverflow.com Aug 24 '10 at 1:23

This question came from our site for professional and enthusiast programmers.

1 Answer

The difference is because you can ask to fill the disk with zeros (full-format) which has to write all blocks of the partition or just rewrite new meta info on disk, without wiping all data, which is quick-format and only takes a few seconds.

link|improve this answer
Long format does not write zeros to the drive, a common misconception, it deletes any data on the disk by deleting/recreating the partition, then scans the drive for bad sectors...support.microsoft.com/… – Moab Aug 30 '10 at 20:15
feedback

Your Answer

 
or
required, but never shown