Task Scheduler

  • Thread starter Thread starter Kendra
  • Start date Start date
K

Kendra

I created a new task on my Windows 2000 server...but it only runs if the
administrator is logged into either the console or TS session. All the
other tasks on this server don't seem to have this problem. Any ideas why
that is?
 
Kendra said:
I created a new task on my Windows 2000 server...but it only runs if the
administrator is logged into either the console or TS session. All the
other tasks on this server don't seem to have this problem. Any ideas why
that is?

What makes you think that the task does not run?
Add some simple diagnostics to the batch file you're
invoking, e.g.

@echo off
echo %date% %time% User=%Username% > c:\test.log
c:\tools\YourTask.exe 1>>c:\test.log 2>c:\test.err
echo %date% %time% >> c:\test.log

Now have a look at the two log files, then post again.
 

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