Skip to content

Instantly share code, notes, and snippets.

@josheby
Last active November 30, 2016 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josheby/c6e9b34cca914b3bbcf7ff61d8803591 to your computer and use it in GitHub Desktop.
Save josheby/c6e9b34cca914b3bbcf7ff61d8803591 to your computer and use it in GitHub Desktop.
Automatic Hard Drive Snapshots to Drobo Using DriveSnapshot
@echo off
cd "C:\Scripts"
net use Z: \\SE-DROBO\SE-BACKUP /user:backup YourPasswordHere
snapshot C:+D: Z:\Snapshot-$date-$disk.sna -L0 -R -T -W --UseVSS --LogFile:C:\Scripts\snapshot.log
forfiles /p Z:\ /s /m *.* /d -30 /c "cmd /c del @path"
net use Z: /delete /yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment