gpt4 book ai didi

c# - 如何确定退出代码来自哪里?

转载 作者:行者123 更新时间:2023-11-30 12:57:51 24 4
gpt4 key购买 nike

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com