# Deploying Unattended Robots - Community License

> Unattended robots are used in automating tasks that do not require human supervision, they usually run in virtual environments on dedicated machines and the automations are controlled from [Orchestrator](https://docs.uipath.com/orchestrator/v2022.4/docs/introduction).

Unattended robots are used in automating tasks that do not require human supervision, they usually run in virtual environments on dedicated machines and the automations are controlled from [Orchestrator](https://docs.uipath.com/orchestrator/v2022.4/docs/introduction).

An unattended automation can be started manually from Orchestrator when needed, but can also be scheduled if the task has to start at a specific interval (daily, hourly, weekly) or at a specific time and date (end of week).

This document guides you through the process of running your first unattended automation using the Community licensed version of UiPath, starting with building the automation, setting up the environment, and running the unattended process.

To run an unattended automation, the following steps need to be taken:

## 1. Create the automation and publish it to Orchestrator

To provide a real life example, let's suppose we need to make a backup of log files on a server every day at 9 AM. For that, we need to copy the log file from that day to another folder. In this example, we copy a file called "Logs.txt" from the "Logs" folder to the "Old Logs" folder, overwriting the backup each time.

1. Create a new process, add the [Copy File](https://docs.uipath.com/activities/docs/copy-file) activity, configure the fields/paths to the files, and select the **Overwrite** option so that the newly copied file can replace the previous file every day.

   ![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102739-051ac0da.webp)
2. Publish the process to Orchestrator.
3. Click the **Publish** button to the right of the Studio ribbon,
4. In the **Publish properties** tab, enter a name for the package.
5. In the **Publish options tab**, for the **Publish to** option, select **Orchestrator Tenant Processes Feed**, the location where unattended robots can access the automation.
6. Click **Publish**.

   For more information, see [About Publishing Automation Projects](https://docs.uipath.com/studio/v2022.4/docs/about-publishing-automation-projects) in the Studio Guide.

   ![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102687-61322b0d.webp)
7. In Orchestrator, create the process that the unattended robot uses for running the automation.
8. Access your Automation Cloud instance at https://cloud.uipath.com, and select your Orchestrator tenant.
9. In Orchestrator, select the **Shared** Folder &gt; **Processes**, and then click the **Plus** button on the right side to open the **Add Process** page.
10. Select the package and click **Create** to add the process to the Shared Folder.

    ![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-103758-d17746dd.webp)

    :::note
    Keep in mind that you are working with two entities in this process. The first entity is you, the developer who creates and publishes the process. The second one is the unattended user that runs the automation and the Robot on the unattended machine.
    :::

## 2. Set up the Windows machine to run the unattended robot

Set up a Windows machine on which to run the unattended robot, ideally this would be a cloud virtual machine that matches the [Hardware and Software Requirements](hardware-and-software-requirements.md#hardware-requirements). Make sure that the screen saver is disabled on the Windows machine.

For example, you can host your virtual machine in [Azure](robot-azure-marketplace-deployment.md). For details on how to set up a Windows virtual machine in Azure, see [Windows VMs Overview](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/overview).

Other environments such as AWS, VMware, or Citrix are supported as well if they match the [Hardware and Software Requirements](hardware-and-software-requirements.md#hardware-requirements).

## 3.Create the Unattended Robot in Orchestrator

The unattended robot has two components: the **account** and the **machine** on which a job runs. The account is the identity that provides permissions and is used to trigger jobs towards the robot, while the machine provides to computational power for executing the job.

1. Create and set up the account.
2. Creating the account: For **unattended** automations, we recommend [creating a robot account](https://docs.uipath.com/orchestrator/v2022.4/docs/managing-accounts#adding-a-robot-account), which is a service-type identity that does not require an email address. However, if the job must run under a particular user's identity (for permissions or audit purposes), you can opt for [creating a user account](https://docs.uipath.com/orchestrator/v2022.4/docs/managing-accounts#adding-a-user-account) instead.
3. [Assign roles to the account](https://docs.uipath.com/orchestrator/v2022.4/docs/assigning-roles#assigning-roles).
4. [Add the account to folders](https://docs.uipath.com/orchestrator/v2022.4/docs/managing-folders#managing-folder-access) which contain the jobs it needs to run.
5. Create a machine template.

   :::note
   While you could opt to create a single [standard machine](https://docs.uipath.com/orchestrator/v2022.4/docs/managing-machines#adding-a-standard-machine), for this example we are creating a [machine template](https://docs.uipath.com/orchestrator/v2022.4/docs/about-machines#machine-template) instead. Machine templates make it easier to deploy several machines by defining the configuration once and then using a single set of client credentials to allow multiple robots to connect to Orchestrator.
   :::
6. In Orchestrator, go to **Tenant** &gt; **Folders**.
7. Select the target folder from the list, and then select the **Machines** tab.
8. In the top right, click **Manage Machines in Folder**.
9. On the **Manage Machines in Folder** page, click the **Add machine** in the top right and select **Machine template**.
10. Configure the machine template and assign one unattended runtime only. For detailed instructions, see [Adding a machine template](https://docs.uipath.com/orchestrator/v2022.4/docs/managing-machines#adding-a-machine-template).
11. Copy the machine key for later use.

If this machine template should be used to run jobs from several folders, add the machine template you created to all the necessary folders. For instructions, see [Assigning machine objects to folders](https://docs.uipath.com/orchestrator/v2022.4/docs/assigning-machine-objects-to-folders).

## 4. Install UiPath Studio on the unattended machine

In order to run unattended automations on a machine with a Community License, you need to install `UiPathStudio.msi` on the unattended machine. If you opt for the **Quick Setup** during installation, the Robot is deployed in **User Mode**, meaning that it runs under the user that started it, and has the exact rights as that particular user.

The `UiPathStudio.msi` installer can be downloaded from the **Resource Center** or directly from the [Automation Cloud home page](https://cloud.uipath.com).

![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102450-6be2efbc.webp)

In order to start a job from Orchestrator, the Windows user must be logged on the machine. The User Mode Robot can not run concurrent jobs on different users, regardless of whether the Robot is installed on a Windows Server or not.

After downloading the Community version of UiPath Studio and Robot, you need to connect it to your Orchestrator instance. For unattended automations, it's recommended to use the Machine Key connection.

## 5. Connect the Robot to Orchestrator

**From Studio**

After the installation is completed, you are presented with the **Get Started** screen, which by default asks you to authenticate. Choose to **Use Machine Key** as it's the recommended configuration for unattended robots. The machine name is filled in automatically, all you have to do is type the **Orchestrator URL** in the form `https://cloud.uipath.com/organisation/tenant`, the **Machine Key** you saved when you created the machine template, and click **Continue**.

![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102521-0c3b04bb.webp)

**From the UiPath Assistant**

The connection between the Robot and Orchestrator can also be established from the UiPath Assistant by following the steps below:

1. Open the UiPath Assistant.
2. On the **Preferences** menu, select **Preferences**.
3. Navigate to **Orchestrator Settings**.
4. In the **Orchestrator URL** field, enter your Orchestrator URL.
5. In the **Machine Key** field, enter the key you copied earlier when you created the machine template in Orchestrator.

   For details about the differences between machine entities in Orchestrator and when to use each one, see [Machines](https://docs.uipath.com/orchestrator/v2022.4/docs/about-machines#machine-template) in the Orchestrator Guide.
6. Click **Connect**. The status should show `Connected, Licensed`.

   ![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102285-044c58ca.webp)

   :::note
   When setting up the machine, if the setup is based on a virtual environment, you can disconnect the remote session but make sure to leave the unattended user logged on the machine so that the connection to Orchestrator stays active.
   :::

## 6. Test the Automation

1. In Orchestrator, select the **Shared** Folder &gt; **Automations** &gt; **Processes**. Look for the process deployed in step 1 and click the **Start a Job** button on the right side to open the **Start Job** page.

   ![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102699-da03e08d.webp)
2. Choose the user and the machine configured earlier, and then click **Start**.

   This starts the selected unattended process on the selected machine. You can monitor the job in the **Jobs Status** section of the Shared Folder in Orchestrator.

   ![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102759-564eac39.webp)

## 7. Schedule the automation

Let's schedule the automation in this example to run on a daily basis at 9 AM:

1. In Orchestrator, select the **Shared** Folder &gt; **Triggers**, and then click the **Add** button on the right side to open the **Create Trigger** page.
2. Make sure **Time** is selected and then provide the required information: enter a name for the trigger, select the process, the user, and the daily recurrence at 9 AM.
3. Click **Add**.

   ![docs image](https://dev-assets.cms.uipath.com/assets/images/robot/robot-102730-d4f814e6.webp)

Setting the schedule as per the screenshot above triggers the `Logs.Backup` process to run on the unattended machine on behalf of the selected user every day at 9 AM UTC.
