Task Scheduler Doesn't Stop RUNNING

R

robboll

Windows 2000 Server
MS Access Tasks
All updates and Service Packs applied

Tasks worked fine last week. Now any task that runs stays running
until I terminate it.

Any ideas as to what is going on? It looks like the jobs are
completing as expected, but the Task Scheduler indicated "Running"

Thanks for any tips.

RBollinger
 
P

Pegasus \(MVP\)

robboll said:
Windows 2000 Server
MS Access Tasks
All updates and Service Packs applied

Tasks worked fine last week. Now any task that runs stays running
until I terminate it.

Any ideas as to what is going on? It looks like the jobs are
completing as expected, but the Task Scheduler indicated "Running"

Thanks for any tips.

RBollinger

Perhaps your tasks are waiting for some user input? Try modifying
your tasks as follows:

@echo off
echo %date% %time% Start of scheduled task > c:\test.log
c:\tools\YourTask.exe 1>>c:\test.log 2>c:\test.err
echo %date% %time% End of scheduled task >> c:\test.log

Now schedule this batch file to run, then examine the two log files.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top