Jump to content

Using Task Scheduler for unattended execution - (Moved)


Go to solution Solved by mistersquirrle,

Recommended Posts

Posted

Hello

As I understand it, any jobs scheduled with Task Scheduler cannot interact with any terminal/screen as such (whether visible or not).  Therefore I realise that any AutoIt logic that moves the cursor, clicks etc will be ineffective. However I'm interested in knowing what I can and cannot do in an AutoIt script in a Task Scheduler context.

The logic I have will, ideally, run overnight and gather information from specific web sites. To achieve this, it will:

a) For some sites it will use _INetGetSource to access the HTML of a web page directly.

b) For some other sites it will use _IECreate to trigger an Internet Explorer browser (with visible flag set to 0) and then use both _IENavigate and the browser's .document.body.innerhtml property.

c) In some other cases it will launch Google Chrome and interact with its "window" in order to navigate within the page and copy test into the copy/paste buffer from the page. I am assuming this will not be possible in a scheduled task.

Are either or both of the approaches described in a) and b) likely to give me problems when running under the task scheduler? I'd experiment but I do find it incredibly difficult to debug anything executed by the Task Scheduler as so little info is available when it fails.

Many thanks.

  • Developers
Posted

Moved to the appropriate AutoIt General Help and Support forum, as the Developer General Discussion forum very clearly states:

Quote

General development and scripting discussions.


Do not create AutoIt-related topics here, use the AutoIt General Help and Support or AutoIt Technical Discussion forums.

Moderation Team

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

  • Solution
Posted
14 hours ago, Fritterandwaste said:

As I understand it, any jobs scheduled with Task Scheduler cannot interact with any terminal/screen as such (whether visible or not).

Depends on what the job is, and how it's launched from Task Scheduler. If you run a task as a logged in user while the computer is unlocked, there's shouldn't be an issue.

Otherwise for testing, just make your script log/write to a file for the steps that it's on, if it completed, if it was an error, etc. Then as Nine mentioned, you'll know when/where your script fails. You should always be handling and checking for errors, and you can likely get away with some of your actions completing and seeing what's possible and what isn't.

Your (a) and (b) points shouldn't have an issue from Task Scheduler even if the computer is locked, as long as you're not anything in the link from ioa747. (c) will likely give you troubles if the computer is locked.

 

https://www.autoitscript.com/autoit3/docs/libfunctions/_FileWriteLog.htm should be very useful for you logging your script.

We ought not to misbehave, but we should look as though we could.

Posted

Thank you. That is helpful (and encouraging). I do use FileWriteLog quite a lot but, yes (and thank you), I'll need to use it more to verify that all is well. At least I now know it's worth taking further. If I remember I will come back and report outcome.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...