how to create a cron expression for every 2 weeks

There is no direct cron expression for every 2 weeks. I use the following cron expression, which is similar to 2 weeks, but not exactly for 2 weeks.

cron expression for every 2 weeks on the 1st and the 15th of every month at 1:30 AM:

30 1 1,15 * *

Leave a Comment