注意:给要执行的程序添加“Everyone” 的可执行权限。

 

                string path = Server.MapPath(".");
                path 
= System.IO.Path.Combine(path, "bin/test.exe");
                System.Diagnostics.Process p 
= new System.Diagnostics.Process();
                p.StartInfo.FileName 
= path;
                p.Start();

 

 

 

 

 

 

相关文章:

  • 2022-12-23
  • 2021-05-17
  • 2021-11-21
  • 2022-01-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-31
  • 2021-12-31
  • 2022-03-09
  • 2021-11-21
  • 2021-11-18
  • 2021-07-13
相关资源
相似解决方案