あるコンソールアプリケーションを別のコンソールアプリケーションから起動しようとすると、なぜこのエラーが発生するのか(毎回ではなく時々)知っている人はいますか?エラー:
System.ComponentModel.Win32Exception(0x80004005):System.Diagnostics.Process.Start()のSystem.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)で不明なエラー(0xfffffffe)
これは私のコードです:
System.Diagnostics.Process myProc = new System.Diagnostics.Process();
try
{
myProc.StartInfo.FileName = @"C:\MyFolder\MyExecutableApplication.exe";
myProc.Start();
myProc.WaitForExit();
procesResult = myProc.ExitCode;
}
catch (Exception ex)
{
cLog.WriteLog("problem", ex.ToString(), myConfig.LogPath);
}
finally
{
if (myProc != null)
{
myProc.Close();
}
}
ありがとうございました