PsExec&通过C#处理不显示输出

时间:2013-06-13 15:57:03

标签: c# .net windows cmd psexec

显然PsExec正在运作。这段代码有效。执行时,它永远不会返回错误。但只有SOMETIMES会返回输出,当它确实返回输出时,它总是〜第一行。 并且ipconfig的第一行是“Windows IP Configuration”,错误框显示“ipconfig返回,错误代码为0”。 如果用本地IP替换REMOTEPC,它将运行,你可以看到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);


    }

0 个答案:

没有答案