Scheduler

  • Thread starter Thread starter Menuz2
  • Start date Start date
M

Menuz2

While logged in as a user with admin rights, I have setup a task to run via
the task scheduler . When an non-admin user is logged in, that task does
not run. Odd. Is this a desktop access issue? How can I get my task to
run even though the admin is logged in?

Nuz
 
Menuz2 said:
While logged in as a user with admin rights, I have setup a task to run via
the task scheduler . When an non-admin user is logged in, that task does
not run. Odd. Is this a desktop access issue? How can I get my task to
run even though the admin is logged in?

Nuz

Most likely your task does run. Add some simple diagnostics
to see what's going on:

@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

Now 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

Back
Top