Is it possible to deploy our bot into different machines with out using Orchestrator

Hi, can you please give me a clarity is it possible to deploy our bot to different machines with out using orchestrator.

Yes but you have to trigger the robots manually (unattended).

Regards,
Karthik Byggari

Yes, You have to publish the package to generate the NUPKG file then you have to add it in robot tray.

or

you can create batch file with BAT extension to trigger the BOT and you can schedule it through Windows Task schedule.

Procedure to create Batch file:

  1. Open Notepad.
  2. Enter as below:
    start “” /min “” /file:“<Full Path of .xaml File>”
  3. Save the File with .bat extension.
  4. Double Click on it should run the xaml file than you configured.

Windows Task Scheduler:

  1. Step 1:Open Notepad
    Step 2:start “” /min “C:\Program Files (x86)\UiPath\Studio\UiRobot.exe” /file:“D:\BlankProcess\Main.xaml” /input:“{‘StartedByTaskScheduler’:true}”
    Step 3:Save it as batch file (Sample.bat)
    Step 4: Open Task Scheduler & Create basic task and point it out to batch file.

image

Let me know if it helps.

Thanks,

David.

Thank you

2 Likes

Thank You David

1 Like