You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
14 lines
356 B
6 years ago
|
@echo off
|
||
|
|
||
|
REM Ensure there's no rsync already running
|
||
|
tasklist /FI "IMAGENAME eq rsync.exe" 2>NUL | find /I /N "rsync.exe">NUL
|
||
|
if "%ERRORLEVEL%"=="0" exit 255
|
||
|
tasklist /FI "IMAGENAME eq vshadow.exe" 2>NUL | find /I /N "vshadow.exe">NUL
|
||
|
if "%ERRORLEVEL%"=="0" exit 255
|
||
|
cd \backuppc
|
||
|
|
||
|
cscript pre-cmd.vbs > NULL
|
||
|
|
||
|
rsync.exe %*
|
||
|
|
||
|
echo '1' > wake.up
|