How can you call an external .exe in unity?

Hello,

I’m just looking to see if someone knows how to call an external .exe from a Unity project using a c# script.

I have created a form app on visual studio which called an external .exe, it works fine. However if I do the same in Unity it will not call it.

If I am honest I don’t know a whole lot about Unity and I am just transferring the code from visual studio onto a script in Unity which is invoked via a UI.

Is there another way Unity called external programs?

What have you tried? I open .exe without problems with System.Diagnostics.Process.Start(path);

Yeh basically doing the same as I would do for a form app.

Using the
System.Diagnostics namespace

It must be something else.

Thanks for the feedback, I’ll look into it!