running an exe with js

i want to shell an exe (videoplayer.exe) from my unity project with javascript

I believe that this code should work: import System.Diagnostics;

var arguments = "myvideo";
var program = "videoplayer.exe";
var myProcess = new Process();
myProcess.StartInfo.FileName = program;
myProcess.StartInfo.Arguments = arguments;
myProcess.Start();