Error running bot in orchestrator

Hello,
I am trying to run a bot on orchestrator and I get the following error:

Can anyone help me?

As it says, it’s not compatible with the .Net version you have installed on the robot server (has nothing to do with Orchestrator). Does the rest of the error message tell you which .Net version you need to install?

Hi @Liliana_Novais

This is a .NET compatibility issue. The SCC.OCR.Dynamic & Proactive.Dynamic 4.0 package requires .NET 6.0 but your project/robot targets net6.0-windows7.0 (Windows Legacy framework), which isn’t supported.

Install .NET 6.0 Desktop Runtime (x64) on the execution machine: Download .NET 6.0 (Linux, macOS, and Windows) | .NET

Restart UiPath Robot service.

In Studio: Downgrade the package to a compatible version (e.g., <4.0) via Manage Packages > republish.

Ensure project is Windows (.NET 6) not Legacy.

Test locally first.

Locally it runs on my laptop, when I publish it does not run

@Liliana_Novais

Follow this compatibility matrix and install the suitable version of the robot on your targeted machine.

This should resolve your issue.

thank you I am testing

1 Like

Hi @Liliana_Novais

The error occurs because the package’s .NET version doesn’t match the robot’s runtime. Make sure the project’s target framework matches the robot (e.g., net6.0), then rebuild and republish the package.