18
5
Is there a built-in cmd command/utility on Windows that can shred files (delete and overwrite with random data) without the need to use third party software? In linux i would use shred. It a wonderful tool that not only deletes files, but also destroys any "residue" left on the disk by overwriting the data.
I've never heard of anything "built in" to Windows. A major problem is that if you attempt to overwrite the file the file system may allocate the "overwritten" version in different space from the original, leaving the original untouched. So it takes some significant low-level understanding of the specific system and its configuration. (And this is doubly true if the "disk" is a SSD.) – Daniel R Hicks – 2012-09-06T21:00:37.433
2
Microsoft offers an addon program (sdelete) that runs from the command line....http://technet.microsoft.com/en-us/magazine/dd334519.aspx
– Moab – 2012-09-06T21:09:43.050Sdelete can be scripted also...http://forum.sysinternals.com/topic6065.html
– Moab – 2012-09-06T21:11:34.217@Moab That program, according to the cover page, overwrites free space -- not quite the same thing. – Daniel R Hicks – 2012-09-06T21:11:48.040
1
@DanH its more powerful than that...http://www.brighthub.com/computing/smb-security/articles/46693.aspx
– Moab – 2012-09-06T21:13:08.897Link is broken to download, here it is....http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx
– Moab – 2012-09-06T21:17:56.673I'm vaguely recalling installable file systems that automatically overwrite space as it's freed. This is probably the only really secure approach. – Daniel R Hicks – 2012-09-07T03:06:40.710