Skip to content

Commit 89e3a5d

Browse files
authored
Added initial copies of wipe script and PPKG
1 parent 0971200 commit 89e3a5d

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

RIPTIDE.ppkg

9.48 KB
Binary file not shown.

WipeAllFreeSpace.ps1

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#Simple drive sanitization script for RIPTIDE, https://riptide.codepy.org/
2+
#Written by Benjamin Jaros
3+
4+
#This script uses the built in cipher.exe program on Windows to overwrite blank space on all drives. This script on it's own does not delete data; it only makes it more difficult to recover already erased data.
5+
#This script is embedded in the provisioning package that RIPTIDE uses to reset a system, so that it scrubs all unused space after the reset has completed.
6+
7+
#Get all connected drives
8+
$Drives = Get-PSDrive -PSProvider 'FileSystem'
9+
10+
foreach($Drive in $drives) {
11+
#Scrub each drive attached
12+
Write-Host "Wiping " $Drive.Root
13+
cipher /w:$Drive.Root
14+
}

0 commit comments

Comments
 (0)