I have installed a back office robot on one of my VDI for production. Due to cost issues we have not purchased an orchestrator so is it still possible to schedule a back office robot using a task scheduler?
Please suggest if there is any way to schedule a back office robot without an orchestrator
You can try with the link @ddpadil provided, but itâs not a guarantee that it still works since UiPath no longer supports this feature.
Or you can test with Orchestrator Community Edition and see if it better fits your needs: https://platform.uipath.com/
The problem is the task scheduler is able to run the process when a user is logged in but it is not able to do the same when the user is not logged in. I have changed all the settings as required but it is still not working
You have to use options /executor and /monitored with UiPath 2016.x
With UiPath 2017.x you have to use option --monitor. Hereâs an example .bat file content.
START ââ âC:\Program Files (x86)\UiPath Platform\UiRobot.exeâ -file âC:\Users\User\Documents\UiPath\Project\Main.xamlâ --monitor
You can also use this command directly in Task Scheduler without a .bat file. Just configure the schedule as Start a program, give the path to UiRobot.exe and arguments exactly as they are in the example above.