从mvc Web应用程序启动客户端PC上的进程

时间:2014-09-12 11:07:08

标签: .net asp.net-mvc

任何人都可以帮助我吗?

我已将服务器上的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

0 个答案:

没有答案