hi, @VLC The problem is your cron expression is missing the seconds field, which UiPath Orchestrator requires. You need to use 6 or 7 fields for Quartz cron format.
Try changing your expression to:
0 55 7-15 ? * 2-6
This means: at second 0, minute 55, hours 7 to 15, any day of month (?), any month, and day of week Monday to Saturday (2-6).
Adding the seconds field at the start and using ? for day of month will fix the “Invalid cron expression” error.
hi, @VLC Your expression has the correct number of fields (6), but in UiPath and Quartz, the first field must be seconds. So your expression should start with 0, then the minutes.
The correct format for your schedule is:
0 55 7-15 ? * 2-6
0: seconds
55: minutes
7-15: hours
?: no specific day of month (since you’re specifying days of week)
*: every month
2-6: Monday to Saturday
This format will work in UiPath and avoid the “Invalid cron expression” error.