Checked in working RoboCopy script to backup Launchbox.

This commit is contained in:
2019-06-01 13:53:03 +00:00
parent af0e70bf78
commit b5e8e369a5
+12
View File
@@ -0,0 +1,12 @@
@echo off
cd %~dp0
if exist "LaunchBox.exe" (
start /wait LaunchBox.exe
ROBOCOPY . "\\sr2\home\LaunchBox" /MIR /XD $Recycle.Bin "System Volume Information"
) else (
ECHO Please ensure LaunchBox is in the same working directory this
ECHO batch file before attempting to backup!
)
pause