我希望在 C# 中完成命令后获取命令提示符窗口的内容。
具体来说,在这种情况下,我通过单击按钮发出 ping 命令,并希望在文本框中显示输出。
我目前使用的代码是:
ProcessStartInfo startInfo = new ProcessStartInfo("cmd.exe");
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true;
startInfo.Arguments = "ping 192.168.1.254";
Process pingIt = Process.Start(startInfo);
string errors = pingIt.StandardError.ReadToEnd();
string output = pingIt.StandardOutput.ReadToEnd();
txtLog.Text = "";
if (errors != "")
{
txtLog.Text = errors;
}
else
{
txtLog.Text = output;
}
它确实有效。它至少抓取一些输出并显示它,但 ping 本身不执行 - 或者至少这是我假设给定下面的输出并且命令提示符窗口闪烁一秒钟。
输出:
Microsoft Windows [版本 6.1.7601] 版权所有 (c) 2009 Microsoft Corporation。版权所有。
C:\Checkout\PingUtility\PingUtility\bin\Debug>
非常感谢任何帮助。