C#中使用命令行命令

本文演示了如何在C#中使用命令行代码:

string command = System.Configuration.ConfigurationSettings.AppSettings["Command"];//ping www.baidu.com
try
{
      	Process p = new Process();
        p.StartInfo.FileName = "cmd.exe";
        p.StartInfo.Arguments = "/c " + command;
        p.StartInfo.UseShellExecute = false;
        p.StartInfo.RedirectStandardInput = true;
        p.StartInfo.RedirectStandardOutput = true;
        p.StartInfo.CreateNoWindow = true;
        p.Start();
        outputMsg = p.StandardOutput.ReadToEnd();
        p.Close();
        if (outputMsg.Contains("Reply"))
        {
        isComputerOn = "SUCCESS";
         return true;
        }
        else
        {
        isComputerOn = "ERROR";
        return false;
        }
        }
       catch (Exception ex)
       {
       return false;
       }
}


上一篇:C#中判断网页是否能够响应


下一篇:大数据时代的数据资产管理