A systems administrator deleted a folder containing confidential financial spreadsheets from a Windows workstation's local storage (`C:\Confidential`). To meet compliance standards, the administrator must ensure that any residual data in the unallocated space of that directory is permanently overwritten without reformatting the drive or affecting existing files. Which of the following command-line utilities and switches should the administrator execute?
- cipher /w:C:\ConfidentialAnswer
- Bchkdsk /r C:
- Cformat C: /p:1
- Dshred -u C:\Confidential\*
Answer
The command 'cipher /w:C:\Confidential' correctly overwrites unused unallocated disk space within the specified path without modifying active files or formatting the partition.
The correct command uses 'cipher /w:directory', which securely wipes unallocated disk space in the designated directory by overwriting free sectors with zero bytes, one bytes, and random numbers. This ensures deleted files cannot be reconstructed using forensic recovery utilities while preserving all active files.
Step-by-Step Solution
Key Concept
Microsoft Windows Command-Line Utilities - Cipher Utility Data Sanitization