- 入门指南
- 了解 UiPath Robot
- UiPath Assistant
- 安装要求
- Installing robots for unattended automations
- Configuring robots for unattended automations
- Deploying unattended automations
- Connecting robots for unattended automations to Orchestrator
- 为高密度机器人设置 Windows Server
- 通过代理服务器重定向机器人
- Implementing authentication
- Adjusting registry settings for execution in minimized RDP windows
- Using network locations
- 设置 Linux 机器人
- 配置包签名验证
- 设置包文件夹和网络路径
- 配置活动订阅源
- Setting up non-persistent VDIs - follow up with Sai
- Installing robots for attended automations
- Configuring robots for attended automations
- 集成
- 故障排除
Robot admin guide
通过代理服务器重定向机器人
For a Robot to establish direct communication with Orchestrator, it needs to be on the same network or use an open one. Otherwise, you need to set up a proxy server to facilitate the communication.
Set up a proxy by either using a proxy script or supplying the proxy server address with a list of addresses to bypass. Only one method can be used. If both are configured, the proxy script takes precedence.
The following configuration options are available:
-
Configuring the web browser
-
Configuring the Windows proxy settings
-
Configuring the proxy setting through command line parameters
-
Editing the
uipath.config
file
proxy.config
file to the uipath.config
in order to match the new format.
User Mode robots inherit the proxy settings configured for your web browser.
For proxy settings that require basic non-Windows authentication, store the necessary credentials in the Credential Manager of the machine.
要在用户模式机器人上应用代理设置,您需要重新启动用户主机服务。为此,您可以注销 Windows 用户会话然后重新登录。
uipath.config
file and the corresponding Windows Settings of the user account running the Robot.
You can configure the auto-update process for robots operating behind a proxy, depending on the on the Robot installation type:
UiPath.config
file. Both the Robot Service and the Update Service run using a Windows Service, independent of a user.
UiPath.config
file. However, the user starts both the Robot Service and the Update Agent. The Update Service runs using a Windows Service.
For quick installations, configurations for the proxy are inherited from the existing user settings. The user initiates all services: Robot Service, Update Agent, and Update Service.
The proxy server might require credentials to allow traffic. You can configure the proxy to authenticate using the credentials of the logged-in Windows user.
UIPATH_PROXY_USE_DEFAULT_CREDENTIALS
on the machine running the Robot and set its value to true
. This tells the Robot to use the Windows Credentials of the current user for proxy authentication.
Starting with version 2021.10, the Robot Service supports proxy servers using Basic Authentication protocols.
User Mode robots - With Basic Authentication, the Assistant identifies if a proxy configuration is implemented on the machine and prompts the user for their credentials.
UiPath.config
file with the following proxy parameters:
<webProxySettings>
<add key="ProxyAddress" value="http://my.proxy.net:8008" />
<add key="UserName" value="myUser" />
<add key="Password" value="myPassword" />
<add key="Domain" value="myDomain" />
</webProxySettings>
<webProxySettings>
<add key="ProxyAddress" value="http://my.proxy.net:8008" />
<add key="UserName" value="myUser" />
<add key="Password" value="myPassword" />
<add key="Domain" value="myDomain" />
</webProxySettings>
- 导航至安装文件夹
%ProgramFiles%\UiPath\Studio
。 - 搜索
uipath.config
文件,然后使用 Notepad++ 等文本编辑器打开该文件。 - 添加
<webProxySettings>
标签并根据您的代理环境设置值。 - 保存
uipath.config
文件。 - 重新启动机器人服务。
To add the proxy settings while installing Service Mode robots, use the dedicated command line parameters in your installation command.
For example, the following command installs the Robot in Service Mode and uses a script to configure proxy:
UiPathStudio.msi ADDLOCAL=DesktopFeature,Robot,RegisterService PROXY_SCRIPT_ADDRESS=http://localhost/proxy.pac
UiPathStudio.msi ADDLOCAL=DesktopFeature,Robot,RegisterService PROXY_SCRIPT_ADDRESS=http://localhost/proxy.pac
The following command installs the Robot in Service Mode and sets up the Basic Authentication for proxy settings:
UiPathStudio.msi ADDLOCAL=DesktopFeature,Robot,RegisterService PROXY_ADDRESS=http://my.proxy.net:8008 PROXY_USERNAME="myUser" PROXY_PASSWORD="myUser" PROXY_DOMAIN="myUser"
UiPathStudio.msi ADDLOCAL=DesktopFeature,Robot,RegisterService PROXY_ADDRESS=http://my.proxy.net:8008 PROXY_USERNAME="myUser" PROXY_PASSWORD="myUser" PROXY_DOMAIN="myUser"
- Proxy for Use Mode robots
- Proxy for Service Mode robots
- The auto-update process for proxy configurations
- Windows 凭据代理身份验证
- 基本身份验证
- Live streaming and remote control in a proxy setup
- Configuring the web browser
- Configuring the Windows proxy settings
- Editing the uipath.config file
- Configuring the proxy settings during Robot installation
- Checking the proxy server connection