I have a Win2k server whose task schedular will not start a batch program task if the user the task was created under, is not logged on. I need this task to run when no user is logged on. Here’s the contents of the batch program: @echo off
copy errorlog.txt logFileBackups\errorlog%date:~4,2%%date:~7,2%%date:~10,4%%time:~-11,2%%time:~-8,2%%time:~-5,2%.txt
copy tracelog.txt LogFileBackups\tracelog%date:~4,2%%date:~7,2%%date:~10,4%%time:~-11,2%%time:~-8,2%%time:~-5,2%.txt
echo. > errorlog.txt
echo. > tracelog.txt
There are no entries in the log to indicated that the task scheduler even started. It’s like nothing at all happened.
Your help is appreciated. DC