您可以安装并更新 Studio 和 Robot,也可以通过 UiPathStudio.msi
安装程序来更改现有安装。
请参阅以下各部分,了解有关可用参数的描述和一些用法示例。
注意:
- 需要管理员权限才能执行这些命令。
- 不支持在静默模式下通过从命令行运行安装程序来更改现有安装。但是,您可以在静默模式下运行安装程序,以从旧版本进行更新。
命令行参数描述
下表列出了所有可用的命令行参数。
所有参数都可以用于全新安装,但是从旧版本更新或更改现有安装时,仅支持以下参数:
- 使用
ADDLOCAL
启用/禁用功能。请注意,Robot 不能禁用。 SERVICE_URL
- 将 Robot 从服务模式切换到用户模式时可用,方式是不包括RegisterService
参数。NUGET_OPTIONS
、ENFORCE_SIGNED_EXECUTION
、DISABLE_SECURE_XAML
和TELEMETRY_ENABLED
- 不可用于更改现有安装。
Command | Description |
---|---|
| Helps you install the specified UiPath features silently, without displaying the user interface. |
| Generates an installer log file at the specified path. Starting with v2018.4.2, this file can also include licensing information if you license Studio or Robot at install time. You can send the file further to our support team if, for any reason, you encounter difficulties during the installation process. |
| Enables you to select what features to install. If It supports the following options:
|
| Hostname or IP address for your SAP Solution Manager instance. Required for clean installs if the For example |
| Enables you to install Studio and Robot in a custom location. |
| This parameter is recommended if you are working in an offline environment. If set to Please note that the URL feeds are not deleted from the configuration files, just ignored. It can be used for both installations and upgrades. |
| Enables you to change the download location of your workflows and their dependencies for Studio and/or Robot. This folder can be user specific or accessible by all users from a machine. This parameter can be used either if the Robot is installed as a service or in user mode. For the Service Mode Robot, packages are concurrently installed on all users. Please note that, for multiple User Mode Robots installed on a machine, the packages folder cannot be the same (such as If you do not provide this parameter the default folder is For installations on Windows Server machines (that enable concurrent execution - HD Robots), you must provide paths that are specific to each user. Using the same shared folder for all users in HD environments is not supported. It is possible to use environment variables such as In batch scripts - use In PowerShell console or scripts - no escaping is needed. If your user is an Active Directory domain account, it is recommended that you specify the domain name in the folder structure too, such as For information on how to change the download folder for packages after installation, see Managing Activities Packages in the Studio Guide. |
| Enables you to add custom NuGet activities feeds for Studio and/or Robot. This command only adds or updates the existing list of feeds. It must be populated with key-value pairs of type string. Valid locations include online feeds, folder paths, and shared network drives. Make sure that the provided feeds are reachable by all users from a given machine. Separate feeds with semicolons (;). Example: |
| Optional. Enables you to enforce your Robots to execute only signed packages. It can be used at clean installs or updates of your instances. If this parameter is not specified at deploy-time, package signing is not enabled. It supports the following options: For information on how to enforce signed execution after installation, see Signing Packages in the Studio Guide. |
| Licenses your Studio instance. |
| Automatically connects the Robot to Orchestrator on-premises using the connection string while also installing it. Please note that the following are required: |
| Automatically installs the Chrome Extension via policy. It supports the following options: |
| Allows you to disable security of It supports the following options: Note: This parameter can only be used during a clean install or an update. |
| Allows you to define the URL of the Orchestrator instance users will connect to using Interactive Sign-In. When running the installer to update from an older version or change your existing installation, this parameter is supported if you are switching the Robot from service mode to user mode (the |
| Allows you to disable the usage data collection and can be done at install time for Studio and Robot. Note: This parameter can only be used during a clean install or an update. Telemetry is enabled by default for Studio and Robot, to disable it during install, use the following value for the parameter: Note: This disables telemetry for both Studio and Robot. If you want to re-enable telemetry, use the following value: For more information about usage data collection and how to change telemetry settings, see the Opting Out of Telemetry document. |
| Allows you to enable the Picture in Picture functionality of the machine during the UiPath command-line installation. To enable it, use the following parameter: Example:
|
示例
编写这些示例时,我们假设您已处于 UiPathStudio.msi
安装程序所在的目录中。您可以使用以下命令来完成此操作,例如:cd D:\UiPathInstaller
。
- 将 Studio、机器人安装为 Windows 服务和活动包 -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot,RegisterService,Packages
- 以用户模式安装 Studio 和机器人 -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot
- 静默安装整个桌面套件 -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot,RegisterService,Packages,StartupLauncher,JavaBridge /Q
- 通过策略静默安装整个桌面套件和 Chrome 扩展程序 -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot,RegisterService,Packages,ChromeExtension CHROME_INSTALL_TYPE=STORE /Q
- 将 Studio、机器人静默安装为 Windows 服务和活动包,并且全部安装在
D:\UiPath
文件夹中 -UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot,RegisterService,Packages APPLICATIONFOLDER=D:\UiPath /Q
- 将机器人静默安装为 Windows 服务,并将其连接到 Orchestrator -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Robot,RegisterService CONNECTIONSTRING=https://demo.uipath.com/api/robotsservice/GetConnectionData?tenantId=1 /Q
- 以静默方式安装 Studio,将机器人安装为 Windows 服务,并添加两个自定义活动订阅源 -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot,RegisterService CUSTOM_NUGET_FEEDS="Feed Name1, https://my.custom.nuget.feed; FeedName2, D:\RPA\Activities\Packages\" /Q
- 静默安装并许可 Studio、注册为 Windows 服务的机器人和本地活动订阅源 -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot,RegisterService,Packages CODE=1234567890 /Q
- 将机器人安装为 Windows 服务,并禁用官方在线订阅源 -
UiPathStudio.msi ADDLOCAL=DesktopFeature,Robot,RegisterService NUGET_OPTIONS=DisableOnlineFeeds
8 个月前更新