摘要: ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = "cmd.exe"; startInfo.Arguments = "/c C:\\Windows\\System32\\cmd.exe"; startInfo.RedirectStandardInput = true; startInfo.RedirectStandardOutput = true; ... 阅读全文
posted @ 2012-04-10 09:14 SpeakHero 阅读(5484) 评论(0) 推荐(0) 编辑