我正在创建一个允许客户端在对话框中列出所有正在运行的进程的应用程序。我目前有以下代码,但我无法解释它为什么不起作用。
我没有看到任何输出,无论是sderr还是stdout。有人可以指出我正确的方向吗?
非常感谢
private void button1_Click(object sender, EventArgs e)
{
string test = " ";
var ss = new SecureString();
ss.AppendChar('T');
ss.AppendChar('a');
ss.AppendChar('k');
ss.AppendChar('e');
ss.AppendChar('c');
ss.AppendChar('a');
ss.AppendChar('r');
ss.AppendChar('e');
ss.AppendChar('9');
ss.AppendChar('9');
ss.MakeReadOnly();
var serverName = "SERVER-NAME";
var sessionID = "2";
var PID = "6816";
ProcessStartInfo startInfo = new ProcessStartInfo("cmd", "/C tasklist /S " + serverName + " /FI \"SESSION eq " + sessionID + "\" >C:\\users\\test.account\\desktop\\NEWEWE.txt")
{
WorkingDirectory = @"C:\windows\system32",
Verb = "runas",
Domain = "BARDOM1",
UserName = "XATest",
Password = ss,
WindowStyle = ProcessWindowStyle.Hidden,
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true
};
Process proc = Process.Start(startInfo);
proc.OutputDataReceived += (x, y) => test += (y.Data);
proc.BeginOutputReadLine();
proc.WaitForExit();
MessageBox.Show(test);
MessageBox.Show("done");
我已经尝试将输出设置重定向为true和false,并且我尝试在具有各种属性的CMD命令中设置> c:...但是根本看不到任何输出。
非常感谢任何帮助! 非常感谢
答案 0 :(得分:0)
问题是命令行指定输出应该转到文件。我还建议使用StringBuilder
来收集输出。它比使用+=
连接字符串要高效得多。
这是一个显示工作版本的示例,后面是展示您所看到的行为的版本。
StringBuilder test = new StringBuilder();
// Not redirected
ProcessStartInfo psi = new ProcessStartInfo("cmd", "/c echo yes")
{
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true
};
Process proc = Process.Start(psi);
proc.OutputDataReceived += (x, y) => test.Append(y.Data);
proc.BeginOutputReadLine();
proc.WaitForExit();
Console.WriteLine(test.ToString()); // Output: yes
test.Clear();
// Redirected
psi = new ProcessStartInfo("cmd", "/c echo yes > NUL")
{
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true
};
proc = Process.Start(psi);
proc.OutputDataReceived += (x, y) => test.Append(y.Data);
proc.BeginOutputReadLine();
proc.WaitForExit();
Console.WriteLine(test.ToString()); // Blank line