W
Walter Schulz
Anyways, I need a batchfile that will look at the system time. If the time
if %time:~0,2% GTR 19 goto :batch1
if %time:~0,2% LSS 7 goto :batch1
call batch2
goto :EOF
:batch1
call batch1
goto :EOF
Ciao, Walter
is between 19:00 and 07:00 it should execute batchfile1 and if it is another
time it should execute batchfile2
if %time:~0,2% GTR 19 goto :batch1
if %time:~0,2% LSS 7 goto :batch1
call batch2
goto :EOF
:batch1
call batch1
goto :EOF
Ciao, Walter