Deployment options

Hello Everyone,

I would like to deploy (productionize) my automation project for the user. It is a simple automation project which involves updating excel spreadsheet.
I would like to understand what is the simplest approach (No need for Orchestrator, no scheduling) to deploy the work in end user machine. Preferably need an option in which the user just trigger the process by double-clicking on the “exe” file like execution.

Thanks,
Ramesh

Create a batch file. The user can double click it to run or
add to Windows Task Scheduler if you want it to be scheduled.

Batch File Content:
C:\Program Files (x86)\UiPath Studio\UiRobot.exe /file: “C:\Users\Admin\Documents\UiPath\TestApp\Main.xaml”

1 Like

Thanks for the reply.
Is it recommended just copy the project to the user machine or should that be compiled into any package? If yes, how can I do that?
Regards
Ramesh

@rpac
If you and client are working in same network. Then you can access that from the remote path by sharing the folder.
Otherwise, you must copy the project to client machine and use its path.