Fritterandwaste Posted April 23, 2023 Posted April 23, 2023 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.
ioa747 Posted April 23, 2023 Posted April 23, 2023 Take a look Why doesn't my script work on a locked workstation? I know that I know nothing
Developers Jos Posted April 23, 2023 Developers Posted April 23, 2023 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.
Nine Posted April 23, 2023 Posted April 23, 2023 Put some error handling and log some crucial informations, that way you will know where and why your script fails. “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
Solution mistersquirrle Posted April 24, 2023 Solution Posted April 24, 2023 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.
Fritterandwaste Posted April 24, 2023 Author Posted April 24, 2023 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.
Fritterandwaste Posted April 24, 2023 Author Posted April 24, 2023 I do now have it working for scenarios a) and b). Thanks again.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now