摘要: private static string CmdPing(string strIp){Process p = new Process(); p.StartInfo.FileName = "cmd.exe";//设定程序名p.StartInfo.UseShellExecute = false; //关闭Shell的使用p.StartInfo.RedirectStandardInput = true;//重定向标准输入p.StartInfo.RedirectStandardOutput = true;//重定向标准输出p.StartInfo.RedirectStandardE 阅读全文
posted @ 2011-07-23 14:24 柠檬绿松 阅读(3501) 评论(0) 推荐(0) 编辑
View Code