任何人都可以帮助我吗?
我已将服务器上的exe复制到客户端PC。
System.IO.File.Copy(Server.MapPath(@"\BrowserPlugin.exe"), localPath + "BrowserPlugin.exe", true);
现在我想在客户端启动这个exe。
var psi = new ProcessStartInfo();
psi.CreateNoWindow = true;
psi.WindowStyle = ProcessWindowStyle.Hidden;
psi.FileName = localPath + "BrowserPlugin.exe";
psi.UseShellExecute = false;
Process.Start(psi);
但无法启动此过程。
返回ExitCode: 255