scheduler not working-frustrating!!!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I schedule a task, the status is "running" and yet
nothing happens-what do I do?

Thanks
 
When I schedule a task, the status is "running" and yet
nothing happens-what do I do?

Thanks

The task obviously runs, otherwise you would not see
this status! Start with a simple batch file, check out the
log files, then build things up from there. Here is a
basic example:

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

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

Back
Top