Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = @"PsExec.exe";
p.StartInfo.Arguments = @"\\10.10.1.127 -accepteula -i -u administrator -p 1 -n 10 c:\myapp.exe";
p.Start();
如何确定
p.ExitCode
是来自 PsExec
还是 myapp.exe
的代码? 最佳答案
结合使用非零错误代码和 PsExec 输出的最后几行的解析。
关于c# - 如何确定退出代码的来源?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32651766/