为什么发布在IIS下的程序Process.Start没反应了,如何解决
时间: 2024-03-08 07:46:02 浏览: 255
在IIS下运行的程序是运行在IIS的进程中的,而`Process.Start`方法是启动一个新的进程来运行指定的可执行文件或者打开指定的文件。所以,如果在IIS下运行的程序中调用`Process.Start`方法,会发现没有任何反应。
如果需要在IIS下运行的程序中调用`Process.Start`方法来启动外部程序,可以考虑使用`System.Diagnostics.Process`类中的`StartInfo`属性,来设置要启动的程序的路径、参数等信息,然后再调用`Start`方法启动进程。
例如,以下代码可以在IIS下启动一个命令行窗口,并执行指定的命令:
```csharp
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = "cmd.exe";
process.StartInfo.Arguments = "/c dir";
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
string output = process.StandardOutput.ReadToEnd();
process.WaitForExit();
```
其中,`FileName`属性指定要启动的程序的路径,`Arguments`属性指定要传递给程序的参数,`UseShellExecute`属性设置为`false`表示不使用操作系统的Shell来启动进程,`RedirectStandardOutput`属性设置为`true`表示将进程的标准输出重定向到`StandardOutput`属性中,然后通过`StandardOutput.ReadToEnd()`方法来获取进程的标准输出。最后,调用`WaitForExit`方法等待程序执行完成。
需要注意的是,如果要在IIS下运行的程序中调用`Process.Start`方法启动外部程序,需要确保IIS应用程序池的身份验证方式为“集成式”,并且应用程序池的身份验证用户具有足够的权限来启动外部程序。
阅读全文