- Erste Schritte
- Grundlegendes zu UiPath Robot
- UiPath Assistant
- Installationsanforderungen
- Installing robots for unattended automations
- Configuring robots for unattended automations
- Deploying unattended automations
- Connecting robots for unattended automations to Orchestrator
- Einrichtung von Windows Server für High-Density-Roboter
- Weiterleitung von Robotern über einen Proxy-Server
- Implementing authentication
- Adjusting registry settings for execution in minimized RDP windows
- Using network locations
- Einrichten von Linux-Robotern
- Konfigurieren der Paketsignaturüberprüfung
- Einrichten von Paketordnern und Netzwerkpfaden
- Konfigurieren von Aktivitätsfeeds
- Setting up non-persistent VDIs - follow up with Sai
- Installing robots for attended automations
- Configuring robots for attended automations
- Integrationen
- Fehlersuche und ‑behebung
Robot-Administratorhandbuch
Fehlerbehebung für .NET
Upgrading the Robot with MSI installers fails with the following error: "You must install .NET Desktop Runtime to run this application."
Workflows using specific activity packages fail when executed by 2023.4.0 and newer robots. The following errors are displayed:
-
„Um diese Anwendung auszuführen, müssen Sie fehlende Frameworks für .NET installieren.“
-
„Um diese Anwendung auszuführen, müssen Sie .NET installieren.“
-
UiPath.Form.Activities version 2.0.x
-
UiPath.IntelligentOCR.Aktivitäten (UiPath.IntelligentOCR.Activities)
-
UiPath.MobileAutomation.Activities
-
UiPath.Vision
-
UiPath.DocumentUnderstanding.Activities
-
OCR-bezogene Aktivitäten im UiPath.UIAutomation.Activities-Paket
-
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)
Das Ausführen eines Windows- oder plattformübergreifenden Prozesses, der mit Studio 2024.2 auf einer Roboter-Version von 2023.12 oder niedriger erstellt wurde, schlägt mit dem folgenden Fehler fehl: „RemoteException: NU1202: Package <Name_des_Pakets> <Version> is not compatible with net6.0-windows7.0 (.NETCoreApp,Version=v6.0). Package <Name_des_Pakets> <Version> supports: net8.0-windows7.0 (.NETCoreApp,Version=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.