- 入门指南
- 了解 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
.NET 故障排除
Workflows using specific activity packages fail when executed by 2023.4.0 and newer robots. The following errors are displayed:
-
“要运行此应用程序,您必须安装缺少的 .NET 框架。”
-
“要运行此应用程序,您必须安装 .NET。”
-
UiPath.Form.Activities 版本 2.0.x
-
UiPath.Intelligent OCR.Activities
-
UiPath.MobileAutomation.Activities
-
UiPath.Vision
-
UiPath.DocumentUnderstanding.Activities
-
UiPath.UIAutomation.Activities 包中与 OCR 相关的活动
-
UiPath.OmniPage.Activities
-
UiPath.OCR.activities
Add an Invoke Code activity at the start of the problematic workflow with the following snippet:
System.Environment.SetEnvironmentVariable("DOTNET_ROOT", System.AppContext.BaseDirectory)
System.Environment.SetEnvironmentVariable("DOTNET_ROOT", System.AppContext.BaseDirectory)
在 2023.12 或更低版本的 Robot 上执行使用 Studio 2024.2 构建的 Windows 或跨平台流程时将失败,并显示以下错误:“远程异常:NU1202:包 <package_name> <version> 与 net6.0-windows7.0(.NET CoreApp,版本 = v6.0)不兼容。包 <package_name> <version> 支持:net8.0-windows7.0(.NET CoreApp,版本 = v8.0)。”
NuGet tries to resolve a package for .NET 6, whereas your automation was built using .NET 8. Such forward compatibility is not supported.