An IT support specialist is tasked with ensuring that previously deleted sensitive files on a Windows workstation volume cannot be recovered using forensics tools. The operational files currently on the drive must remain intact, and the volume cannot be formatted. Which of the following command-line utilities and options should the specialist execute?
- cipher /w:C:\DataAnswer
- Bsfc /purgecache
- Cshred -u -z C:\Data
- Dsecpol.msc
Answer
The command 'cipher /w:C:\Data' is the correct choice because it overwrites unallocated free disk space without erasing active files.
The 'cipher /w' command is specifically designed in Windows to remove data from available unallocated storage space. When run against a path, it allocates memory and writes three passes (zeroes, ones, and random numbers) to all free disk space, ensuring deleted files cannot be recovered while leaving active files intact.
Step-by-Step Solution
Key Concept
Using the cipher command to wipe unallocated disk space in Windows