I need help with creating a cron expression for my trigger.
The process needs to run every 1st day of every month of the year.
I’ve tried to use:
0 0 1 * *
0 0 0 1W ?
Everytime I use them it throws an error: Invalid cron expression syntax (#1600)
To expand on why this is the correct solution for anyone that would stumble on it
UiPath Orchestrator uses Quartz.NET Framework for its Cron Expressions.
This is expecting the following (6 to 7) fields in the expression with the last one year being optional. If you come from other non-compatible expression parsing, you might be used to only 5 fields where seconds is not supported.