使用如下代码执行DOS命令: net share > c:/1.txt
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine("net share > c://1.txt");
p.StandardInput.WriteLine("exit");
p.StandardOutput.ReadToEnd();
然后再用代码分析c:/1.txt即可