UiPath 收集使用情况和性能的数据,以帮助诊断问题和改进其产品。如需关于 UiPath 隐私惯例的详细信息,请参阅隐私声明。
遥测数据用于开发新功能和增强功能,以提升用户体验并为 Studio 和机器人装备您最需要的工具。
此外,我们也可通过利用遥测数据来满足用户需求和进行产品改进,让您能够更加轻松地设计、调试和运行自动化流程。
If you want to see how to opt out of telemetry in Orchestrator, please visit this page.
If you want to see how to opt out of telemetry on Mac, please visit this page.
备注:
Studio 和机器人中默认启用使用情况数据收集,并且只有在 Studio 通过企业版许可证激活时才能关闭。
在安装时选择退出
要在安装时禁用 Studio 和 Robot 的使用情况数据收集,请选择“自定义安装”>“高级设置”,然后在“安全”选项卡上选择“禁用遥测”选项。
If you are installing from the command line, run the installer with the parameters for installing Studio and Robot, together with the TELEMETRY_ENABLED=0
parameter for disabling telemetry. TELEMETRY_ENABLED=1
is the parameter for enabling data collection.
例如,以下命令将安装 Studio、用户模式 Robot 和 Assistant,并选择退出遥测:
UiPathStudio.msi ADDLOCAL=DesktopFeature,Studio,Robot TELEMETRY_ENABLED=0
备注:
在更新 Studio 实例时,也可添加
TELEMETRY_ENABLED
参数。如果更新时省略此参数,则保留以前的值。如果之前版本的 Studio 中缺少此键,并且您在更新时没有提供
TELEMETRY_ENABLED
参数,则 Telemetry.Enabled 将自动设为true
。
在安装后选择退出
在安装 UiPathStudio.msi
后,您可以通过使用“Studio 后台”视图中的“遥测”开关在用户级别选择退出遥测。
第二种方法需要修改 uipath.config
文件中的 "Telemetry.Enabled"
参数。请注意,此方法建议在组织级别使用。一旦在 uipath.config
文件中进行这项更改,就无法使用 Studio>“常规设置”中的遥测开关来还原。
在用户级别选择退出
在“Studio 后台”视图中,前往“设置”>“常规”设置。将“遥测”下的开关切换到“禁用”,然后重新启动 Studio。这样一来,系统将不再从您的计算机收集匿名遥测数据。

在组织级别选择退出
若要在安装后选择退出遥测,第二种方法是修改 uipath.config
文件中的 "Telemetry.Enabled"
参数,该文件位于 %ProgramFiles%\UiPath\Studio\uipath.config
。
<analyticsSettings>
<add key="Telemetry.Enabled" value="true" />
</analyticsSettings>
在 <analyticsSettings>
部分中,将 "Telemetry.Enabled"
参数的值从 "true"
更改为 "false"
。保存文件,再根据需要重启 Studio。UiPath 不再收集与您计算机上安装的 Studio 和机器人相关的遥测数据。
请注意,若是将 Studio 实例从 v2019 之前的版本升级,但不指定遥测参数,您也需按如下所示在 uipath.config
文件中添加 analyticsSettings
部分:
<configSections>
<section name="analyticsSettings" type="System.Configuration.AppSettingsSection" />
</configSections>
9个月前更新