I'm trying to schedule a task to run on the “first Wednesday of the month at 9 AM” by using a cron expression.
The best I've got so far is 0 9 * * 3 which translates to “at 09:00 on Wednesday.” But that's every Wednesday, unfortunately.
Is it even possible to express that occurence in a cron expression?