Can any one help me?
I have copied a exe from server to client pc.
System.IO.File.Copy(Server.MapPath(@"\BrowserPlugin.exe"), localPath + "BrowserPlugin.exe", true);
Now i want to start this exe on client side.
var psi = new ProcessStartInfo();
psi.CreateNoWindow = true;
psi.WindowStyle = ProcessWindowStyle.Hidden;
psi.FileName = localPath + "BrowserPlugin.exe";
psi.UseShellExecute = false;
Process.Start(psi);
but unable to start this process.
it returns ExitCode: 255