Skip to main content

Trigger "* * * * *"

This parameter sets the period during which InfoportLauncher.exe performs its activity. The standard Cron format is used. It consists of five parts that describe time and date information. Gradually it is min (0 - 59), hour (0 - 23), day of month (1 - 31), month (1 - 12), day o week sd (0 - 6) (0 = Sunday) If the details are not important, they are replaced with *

This is best understood with examples:

  • If you want to schedule an activity for each hour, use "0 * * * *", which means: at zero minutes, every hour, every day of the month, every month, any day of the week.
  • If you want to schedule an activity always an hour after midnight, use "0 1 * * *", which means: at zero minutes, the first hour of the day, every day of the month, every month, any day of the week.
  • If you want to schedule an activity always at half past two a.m. early Saturday morning, use "30 2 * * 6", which means: thirty minutes, of the second hour of the day, the sixth day of the week (on Saturday) regardless of the day of the month or month.