How to schedule a bot to run only once( first Monday) in month

Hi All,

How do I schedule a bot to run only one time a month (Only on first Monday)?

Thanks,
Naresh

@nikhil.girish
@Palaniyappan

1 Like

Hi @Mandava_Naresh

Try out this CRON Expression
0 0 0 ? * 2#1 *

Regards
Sudharsan

Hi @Mandava_Naresh

kindly use this

 0 0 0 ? * 2#1

Also can you tell us the time u want to run @Mandava_Naresh

Hi @Mandava_Naresh
lets say u want to run 10 am on first monday of evry month

0 0 10 ? * 2#1

6 pm of first monday every month

0 0 18 ? * 2#1

so on… kindly alter the cron depending upon ur time

hope this helps

1 Like

Thank you very much @nikhil.girish :slight_smile:

1 Like

Thank you very much @Sudharsan_Ka … It worked

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.