• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Alternative to low-level formatting?

  • Thread starter Thread starter fr
  • Start date Start date

fr

Diamond Member
Instead of doing a low-level format on a large drive which could take hours, can't I just write a huge file that's full of zeros onto the drive?

I have a dummy file creator that does this. It would be a lot quicker than doing a low-level format, but would it have the same effect?
 
Using debug.exe command in DOS Mode:


-f 200 L1000 0
-A CS:100
xxxx:0100 Mov AX,301
xxxx:0103 Mov bx,200
xxxx:0106 mov cx,1
xxxx:0109 mov dx,80 (80-hd0, 81-hd1)
xxxx:010c int 13
xxxx:010E int 20
xxxx:0110
-G
-q
 
Writing a dummy file doesn't wipe out the boot record, partition table, et cetera, it just writes one big file which is noted in the FAT or MFT. That's usually the reason people use the write all zeros tools. Security is also a reason some do it, and again writing a dummy file doesn't actually erase the file allocation table or master file table, so it's less secure.
 
Back
Top