robot
2022.4
false
- Release Notes
- Getting Started
- UiPath Assistant
- Installation and Upgrade
- Robot Types
- Robot Components
- Licensing
- Connecting Robots to Orchestrator
- Processes and Activities
- Logging
- Robot JavaScript SDK
- Specific Scenarios
- Windows Sessions
- Login Using Thales Luna Credential System
- Login Using NShield Key Storage Provider
- Redirecting Robots Through a Proxy Server
- Executing Tasks in a Minimized RDP Window
- Using Mapped Network Drives
- Stopping a Process
- Disable Stop Button
- Custom Package Folders and Network Paths
- CrowdStrike Integration
- Restarting Robot Components
- Troubleshooting
- About Troubleshooting
- Unresponsive Robot Over RDP
- Duplicate Execution Logs
- Frequently Encountered Robot Errors
- Increased Process Execution Duration
- Enforced Package Signature Verification
- Message Too Large to Process
- Errors When Running as Administrator
- NuGet Packages Not Accessible After Migration
- User Access Control Prompt and UI Automation Activities

Robot User Guide
Last updated Dec 18, 2024
This page provides instructions for the installation of Terraform
v0.12.3. You may choose to download the most recent, or another, version of Terraform but you must then also upgrade the scripts
according to the Terraform Upgrade Guide.
- Download the Terraform installation archive for your Windows version (e.g.
terraform_0.12.3_windows_amd64.ziporterraform_0.12.3_windows_386.zip). -
Upzip the package to your desired directory, for example
C: erraform.Note: Terraform runs as a single binary namedterraform.exe. All other files in the package can be safely deleted. - Set the Terraform binary to be available from the
Pathsystem variable as follows: - Open Windows Control Panel and select System and Security.
- Click System and select Advanced system settings from the left menu. The System Properties window is displayed.
- From the Advanced tab, click Environment Variables. The Environment Variables window is displayed.
- From the System variables pane, select the Path variable and click Edit. If the Path variable does not exist, click New. The New/Edit environment variable window is displayed.
- Add the Terraform directory to the new or existing variable. In our example,
C: erraform\. -
Click OK on all Control Panel windows to close them.
Note: These instructions are applicable to Windows 10 and Windows 8. If using Windows 7, the Advanced system settings are reached by right-clicking the Computer icon and selecting Properties. - Open an elevated command prompt and run Terraform.
-
Download the Terraform installation archive for your machine (e.g.
terraform_0.12.3_linux_amd64.zip,terraform_0.12.3_linux_arm.zip, orterraform_0.12.3_linux_386.zip).For example:$ wget https://releases.hashicorp.com/terraform/0.12.3/terraform_0.12.3_linux_amd64.zip. - Install
unzip, if not already present. For example: - if using Debian/Ubuntu:
$ sudo apt-get install unzip. - if using CentOS/Redhat:
$ sudo yum install unzip. -
Unzip the installation package. For example:
$ unzip terraform_0.12.3_linux_amd64.zip.Note: Terraform runs as a single binary namedterraform.exe. All other files in the package can be safely deleted. - Set the Terraform path:
$ sudo mv terraform /usr/local/bin/.