27

Due to the nature of how filesystems like NTFS work, files that are deleted "permanently" from within Windows aren't immediately deleted - they're simply marked as deleted from the Master File Table (the hard drive's index) and therefore inaccessible from within the operating system using normal means.

This means that although a little harder to get to, they still exist on the drive until the space they occupy is overwritten by a newer piece of data, which can be never at all depending on how much free space the hard drive has. This makes deleted data easily recoverable to anyone capable of using dedicated data recovery tools like Recuva and GetDataBack.

On Windows, the wiping of free space is usually done via a (typically bloated) third-party GUI, despite the fact that it can be done relatively simply via the command-line in Linux.

Does such a command-line tool exist for Windows?

1

1 Answer 1

33

Such a tool exists in the form of a native, little-known Windows utility called cipher.

cipher.exe has been included in Windows systems since Windows 2000, with the primary purpose of encrypting and decrypting files and folders using EFS encryption.

However, all that's needed to securely wipe the free space on a hard drive is cipher's /w switch:

cipher /w:C:

Note that cipher's syntax is slightly odd in that it requires one colon after the /w switch, followed by the drive letter of the volume that you want to securely wipe. If your system contains both a boot drive and a data drive, you'll want to wipe both separately with cipher /w for maximum security, or wipe just the data drive to cover yourself for most purposes.

enter image description here

cipher works by creating a folder called EFSTMPWP on the root of the target drive; inside this folder, it successively fills three temporary files with zeroes, ones and random data, one after the other, each one filling the size of the empty space left on the drive. By the time a file has taken up all of the drive's empty space, it's effectively forced the filesystem to overwrite all data held in its free space with the file's newly-written data, rendering any data previously held there permanently irrecoverable.

3
  • 10
    Please be aware that on SSDs with overprovisioning, there are blocks that the OS is not aware of. The SSD itself will necessarily have vendor-specific tools for wiping those. Commented Nov 18, 2018 at 0:02
  • 1
    Exactly what I was looking for. Thank you!
    – Defacto
    Commented Aug 27, 2019 at 20:53
  • 3
    Ran this and tried recovering data from a drive. PhotoRec could not recover anything. It could easily recover my files before. So this works Commented Feb 6, 2020 at 5:17

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .