[SOLVED] Specific Schedule to Run Macro

I want a very specific schedule to run my macro, which is to backup my computer.
So for example 7am, 8am, 9am, 11am, 12pm, 3pm, 5pm, etc.
Periodic Trigger or Time of Day Trigger don't seem to allow this.
The Cron Trigger seems more promising, but I still can't find a way to do this.
Other than creating different macros for periodic groups, is there a way to achieve this?

Use the Cron trigger with:

0 7,8,9,11,12,15,17 * * * *

Note that this will only work if all the desired times are the same amount into each hour.

If you wanted say 7, 8:30, 9:15 then you would need a different solution. Such as multiple Time of Day trigger or Cron triggers.

3 Likes

Thank you.
This will do for what I need, actually. No need for those extra details.

1 Like