To Set Trigger unattended

Hello Team,

How can we set trigger for bot for once in 3 month at 4 am IST

On 8th working day

Example for Schedule

1)12th Dec 4 am IST
2)8th working day march 4 am IST same for other month to follow

@NISHITHA

cron expression cannot be used for exactly running on 8th working day

you have to use logic in your code to do the same…may be you can schedule the robot on every month between 10 to 15 and check if it is the 3rd month from pevious run date and also if the date is the 8th working day or not and run or else end the process

cheers

Could you share the expression format

@NISHITHA ,

  1. Create an Asset and update the last bot run date into it.
  2. You can write a crone expression to trigger BOT every three months once. Please refer below document to build the same. Orchestrator - Using Cron Expressions (uipath. com)
  3. Whenever the bot triggers bot will check the Last run date from Assets and if the condition meets then the bot will run further and update the last run date into Assets. If a condition is not satisfied then the bot will end the execution.