Can execute the multiple uipath workflow in same machine?

My UiPath worlflow uses api to fetch list of portal credentials and iterate them to log into the portal and scrape data in a loop. My question is can split the credentials in a list into number of parts and use the same UiPath workflow in multiple instance in a same desktop and send the splited credentials to those instances and execute them? Is it possible ?

can any one help towards it. Whether it is possible or there any alternative option available?

Hi @Prabhakaran_Elango,

You can run multiple bot instances on the same desktop only if you have multiple robot runtimes/licenses.

However, since your process involves UI automation, it may fail if multiple instances try to interact with the screen at the same time, leading to conflicts and unstable execution.

Thanks!

Hi @Prabhakaran_Elango

Yes, it is possible to split the credential list and run multiple instances of the same workflow. However, the recommended approach in UiPath Orchestrator is to push each credential as a Queue item and allow multiple robot jobs to process them in parallel. This avoids manually splitting the data and provides better scalability, monitoring, and error handling.

If solution works for you please mark as solution
Thanks

Yes, it is possible to split the credentials and run multiple instances of your UiPath workflow, but if it uses browser or UI actions, conflicts can occur, so using UiPath Orchestrator with queues is a safer and more reliable way.