解除“blah.exe已停止工作”消息。 C#

时间:2014-12-17 14:57:40

标签: c# windows exe unmanaged terminate

我有一段C#代码,它调用一个进程,指向另一个可执行文件。在一些罕见的情况下,发生访问冲突,后者被操作系统终止,消息" program.exe已停止工作... Windows可以在线检查解决方案,等等......"。我可以使用带有预定义超时的WaitForExit来终止和关闭进程,但是上面提到的窗口一直挂起。有可能以某种方式解雇它吗?

调用外部程序的代码如下:

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.RedirectStandardError = true;
startInfo.FileName = pathToExe;
startInfo.ErrorDialog = false;
startInfo.Arguments = arguments;
string error = "";


using (Process exeProcess = System.Diagnostics.Process.Start(startInfo))
{
    try
    {
        if (!exeProcess.WaitForExit(timeout))
        {
            /// timed out
            /// clean up, set err message
            exeProcess.Kill();
            error = "timed out";
        }
        else if (exeProcess.ExitCode != 0)
        {
            /// aborted itself on error
            /// clean up, return err message
            error = exeProcess.StandardError.ReadToEnd();
        }
        else
        {
           //finished correctly
           //do some useful stuff
        }
    }
    catch(Exception e)
    {
        error = e.Message;
    }
}

1 个答案:

答案 0 :(得分:2)

Windows API调用SetErrorMode允许禁用此行为。但是,您无法为其他进程设置错误模式。因此,此解决方案意味着您可以控制' blah.exe'源代码。有关C++C#主题的有用答案。

另一个建议的解决方案是将外部程序作为Windows服务运行。