Page 1 of 1

How to start task once after system start with a delay of e.g. x minutes

Posted: Wed Aug 02, 2023 5:04 pm
by abackhaus
Hi there

Uff - I run up and down the docs but I need human help ...

I want to start a task once after system startup with a delay of e.g. 5 minutes. Additional the task should be startable with via hotkey.

How can I make this happen ?

Thanks in advance ...

Re: How to start task once after system start with a delay of e.g. x minutes

Posted: Sat Aug 05, 2023 7:26 am
by Oleg
You should have two tasks:
1st is the main task. Attach a HotKey trigger to this task
2nd task - the task starts the main task with a delay. Algorithm is simple:
  • Pause - 5 minutes
  • Start Main task
Check this option (see screnshot)
OnStart.png
OnStart.png (49.56 KiB) Viewed 4604 times
So you achieve your goal:
  • the task starts by hot key
  • the task starts when RoboTask starts with delay

Re: How to start task once after system start with a delay of e.g. x minutes

Posted: Mon Aug 07, 2023 8:19 am
by abackhaus
Thanks a lot !