What is the cron expression for this?

What is the cron expression for this orchestrator time trigger?

At 10:55 AM, 03:55 PM and 05:00 PM, Monday through Friday

Hi,
Please find the below cron expression for 10:55 Am and 3:55 PM
55 10,15 * * 1-5
for 5Pm
0 17 * * 1-5

Thanks, can it be done in one cron expression?

Nope because we are having different timings like 10:55 and 3:55 and 5 Pm, here the minutes getting different so it required multiple cron expression.

Please mark this is solution if its help to you

i have generated this from chat gpt
So, the combined cron expression 55 10,15,17 * * 1-5 means: “Execute the task at 55 minutes past the hours 10, 15, and 17 (AM/PM) on Monday through Friday.”

Hi @mlellison

Try this

0 55 10,15,17 ? * MON-FRI

Regards,