如何确定退出代码来自何处
本文关键字:何处 代码 何确定 退出 | 更新日期: 2023-09-27 18:13:23
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的最后几行输出