Backup batch file
Backup batch file for backing up the cycle once in a while to an external hard drive. Windows scheduled task manager runs this file. Fairly easy. ?View Code DOS1 2 3 4 5 6 7 8 9 10 @echo off set hour=%time:~0,2% if "%hour:~0,1%"==" " set hour=0%time:~1,1% set filename=%date:~9,4%-%date:~6,2%-%date:~3,2%_%hour%%time:~3,2% echo %filename% copy /Y [...]