I would like to schedule Toucan to run via Windows Task Scheduler (Scheduled Tasks). It is easy enough to do this but how would I schedule it to run a certain saved job? Anyone know how this might be accomplished? Thanks,
jared
New: Kanri (Oct 9, '24), Platform 29.5.3 (Jun 27, '24)
1,100+ portable packages, 1.1 billion downloads
No Ads November!, Please donate today
I would like to schedule Toucan to run via Windows Task Scheduler (Scheduled Tasks). It is easy enough to do this but how would I schedule it to run a certain saved job? Anyone know how this might be accomplished? Thanks,
jared
toucan jobname
make it into a batch or something to launch
I thought you could store and pass parameters in a scheduled task job?
I've setup the job names but do you create a batch? I can launch toucan as a scheduled task but how do you tell it to run a particular job?
Ok, I got it figured out. I setup a simple batch file as suggested with the simple text "toucan jobname" in it and then scheduled that batch file to run.
Works great. Just wanted to post a follow up in case someone else is trying to do the same thing.
I know this is a (very) old thread, but current version of Toucan requires "-j jobname" to execute jobname from commandline, so something like:
schtasks /create /SC DAILY /TN back2drop /TR "Z:\PortableApps\Toucan\Toucan.exe -j PortableAppsConfigs2DropBox" /ST 15:30
is required to create a daily job at 3:30pm for job "PortableAppsConfigs2DropBox"