UiPath collects usage and performance data to help diagnose problems and help improve Orchestrator. The information we collect can include data on UiPath product information, the operating system, and browser versions. For more details about UiPath’s privacy practices, please review the privacy statement.
Orchestrator 中的数据收集由名为 Telemetry.Enabled
的 UiPath.Orchestrator.dll.config
参数进行控制。系统将在安装过程中根据指定的参数将这一条件设置为 true
或 false
。
该选项默认处于启用状态,但是可以在 Orchestrator 中选择不再发送使用情况和性能数据收集情况:
- at install-time using command line parameters;
- after the installation process, by modifying the
UiPath.Orchestrator.dll.config
file.
If you want to see how to opt-out of telemetry in Studio and Robot, please visit this page.
Using Command Line Parameters
- 以管理员身份打开命令提示符。
- Go to the directory in which you downloaded the
UiPathOrchestrator.msi
. For example,cd D:\UiPath
. - 使用必需参数运行设置工件,并添加
TELEMETRY_ENABLED=0
。例如,以下命令将 Orchestrator 静默安装在自定义位置,然后使用提供的 SQL 凭据将其连接到 SQL 数据库,并选择退出使用数据:
UiPathOrchestrator.msi ADDLOCAL=OrchestratorFeature ORCHESTRATORFOLDER=C:\UiPathOrchestrator APPPOOL_IDENTITY_TYPE=USER APPPOOL_USER_NAME=serviceAccount APPPOOL_PASSWORD=1234qwer DB_SERVER_NAME=.\sqlexpress DB_DATABASE_NAME=UiPath DB_AUTHENTICATION_MODE=SQL DB_USER_NAME=SQLUSER DB_PASSWORD=SQLUSERPASSWORD TELEMETRY_ENABLED=0 /Q
备注:
The
TELEMETRY_ENABLED
parameter can also be added when updating your Orchestrator instance. If the parameter is omitted on updates, the previous value is preserved.如果之前版本的 Orchestrator 中缺少此键,并且您在更新时没有提供
TELEMETRY_ENABLED
参数,则Telemetry.Enabled
将自动设为true
。
To view more information on all command line parameters available in the UiPathOrchestrator.msi
, please visit this page.
更改 UiPath.Orchestrator.dll.config
文件
UiPath.Orchestrator.dll.config
文件您可以通过执行以下步骤来选择不发送使用情况数据:
- Go to the location of the
UiPath.Orchestrator.dll.config
file. By default, the path isC:\Program Files (x86)\UiPath\Orchestrator
. - Open the file with a text editor such as Notepad++.
- 在
appSettings
部分中,将Telemetry.Enabled
参数的值更改为false
。 - Save your changes. Your Orchestrator instance no longer sends usage data to UiPath.
11 个月前更新