显然 PsExec 正在工作。此代码有效。执行时,它从不返回错误。但只有有时它会返回输出,当它返回输出时,它总是~第一行。ipconfig 的第一行是“Windows IP 配置”,错误框显示“ipconfig returned with the error code 0”。如果您将 REMOTEPC 替换为本地 IP,它将运行,您可以看到 cmd 短暂闪烁的信息。所以它有效。
我应该补充一点,我相信原因是在执行 PsExec 之后,它并没有“退出”。所以 WaitForExit 永远不会发生。当您在 cmd 窗口中单击 X 时,会显示这些框。有时与提到的输出,或空白。
但出于某种糟糕的原因,它永远不会输出整个东西!它永远不会读到最后。
private void button1_Click(object sender, EventArgs e)
{
Process p = new Process();
p.StartInfo.FileName = @"C:\PsExec.exe";
p.StartInfo.Arguments = @"\\REMOTEPC -u USER -p PASS -s ipconfig /all";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
//p.StartInfo.RedirectStandardInput = true;
p.Start();
string output = p.StandardOutput.ReadToEnd();
//Tried this method of getting the output too
// while (!p.HasExited)
//{
// output += p.StandardOutput.ReadToEnd();
// }
string error = p.StandardError.ReadToEnd();
p.WaitForExit();
MessageBox.Show(output);
MessageBox.Show(error);
}