Task Scheduler stoped working

  • Thread starter Thread starter Leef Smith
  • Start date Start date
L

Leef Smith

On a Windows 2000 server, Task Scheduler has stopped
working and tasks are giving the error message -
Result: The task completed with an exit code of (80).
AT command won't execute as well.

This server has been executing tasks for months and
months. the only recent change that could be applicable is
the browser was upgraded to IE 6 SP 1 recently. Any ideas?
 
Task Exit Codes are supplied by the task you're running,
not by the Task Scheduler. What is the task you're trying
to run? Have you tried to run a simple diagnostic batch
file?

@echo off
echo %date% %time% Start of task > c:\test.log
echo User=%UserName%, Path=%path% >> c:\test.log
c:\Tools\YourTask.exe 1>>c:\test.log 2>>c:\test.err
echo %date% %time% End of task >> c:\test.log

When you schedule this job, what do you see in the
two log files?
 
Back
Top