CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Apr 2003
    Location
    Dodge City Kansas
    Posts
    23

    How to sanitize a hard disk?

    I'm looking for a bit of help with some code that would permanently erase(sanitize) all data from a hard drive. I work at a medical facility that is replacing PC, and I need a way to wipe all data, and make the info irretrievable.

    These PC's are being donated and want to make sure they are HIPPA clean

    Thanks!!!

  2. #2
    Join Date
    Jun 2001
    Location
    Mi
    Posts
    1,249
    Run the lowlevel format in your BIOS. Alternately there is software that will do it or you can write your own ... I believe that the lowlevel format is data destructive. You might want to run it a couple of times ... Oh, and this is also vendor specific ..

  3. #3
    Join Date
    Sep 2000
    Location
    FL
    Posts
    1,452
    Check out WipeInfo

  4. #4
    Join Date
    Apr 2002
    Location
    Melbourne, Victoria, Australia
    Posts
    1,792
    Use a magnet

    Seriously though, run a low level format, then write a quick VB program that will overwrite every sector on the disk with nulls, then reformat again.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured