string str = Console.ReadLine();
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;    //是否使用操作系统shell启动
p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息
p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
p.StartInfo.RedirectStandardError = true;//重定向标准错误输出
p.StartInfo.CreateNoWindow = true;//不显示程序窗口
p.Start();//启动程序
//向cmd窗口发送输入信息
p.StandardInput.WriteLine(str + "&exit");
p.StandardInput.AutoFlush = true;
//p.StandardInput.WriteLine("exit");
//向标准输入写入要执行的命令。这里使用&是批处理命令的符号,表示前面一个命令不管是否执行成功都执行后面(exit)命令,如果不执行exit命令,后面调用ReadToEnd()方法会假死
//同类的符号还有&&和||前者表示必须前一个命令执行成功才会执行后面的命令,后者表示必须前一个命令执行失败才会执行后面的命令
//获取cmd窗口的输出信息
string output = p.StandardOutput.ReadToEnd();
//StreamReader reader = p.StandardOutput;
//string line=reader.ReadLine();
//while (!reader.EndOfStream)
//    str += line + "  ";
//    line = reader.ReadLine();
p.WaitForExit();//等待程序执行完退出进程
p.Close();
Console.WriteLine(output);

需要提醒注意的一个地方就是:在前面的命令执行完成后,要加exit命令,否则后面调用ReadtoEnd()命令会假死。

对于执行cmd命令时如何以管理员身份运行,可以参考C#如何以管理员身份运行程序 - 酷小孩 - 博客园

另一种方法

这种方法在执行时会“闪一下” 黑窗口。

/// <summary>
/// 运行cmd命令
/// 会显示命令窗口
/// </summary>
/// <param name="cmdExe">指定应用程序的完整路径</param>
/// <param name="cmdStr">执行命令行参数</param>
static bool RunCmd(string cmdExe, string cmdStr)
    bool result = false;
        using (Process myPro = new Process())
            //指定启动进程是调用的应用程序和命令行参数
            ProcessStartInfo psi = new ProcessStartInfo(cmdExe, cmdStr);
            myPro.StartInfo = psi;
            myPro.Start();
            myPro.WaitForExit();
            result = true;
    catch
    return result;
/// <summary>
/// 运行cmd命令
/// 不显示命令窗口
/// </summary>
/// <param name="cmdExe">指定应用程序的完整路径</param>
/// <param name="cmdStr">执行命令行参数</param>
static bool RunCmd2(string cmdExe, string cmdStr)
    bool result = false;
        using (Process myPro = new Process())
            myPro.StartInfo.FileName = "cmd.exe";
            myPro.StartInfo.UseShellExecute = false;
            myPro.StartInfo.RedirectStandardInput = true;
            myPro.StartInfo.RedirectStandardOutput = true;
            myPro.StartInfo.RedirectStandardError = true;
            myPro.StartInfo.CreateNoWindow = true;
            myPro.Start();
            //如果调用程序路径中有空格时,cmd命令执行失败,可以用双引号括起来 ,在这里两个引号表示一个引号(转义)
            string str = string.Format(@"""{0}"" {1} {2}", cmdExe, cmdStr, "&exit");
            myPro.StandardInput.WriteLine(str);
            myPro.StandardInput.AutoFlush = true;
            myPro.WaitForExit();
            result = true;
    catch
    return result;
                    转载自:https://www.cnblogs.com/babycool/p/3570648.html一种方法string str = Console.ReadLine();System.Diagnostics.Process p = new System.Diagnostics.Process();p.StartInfo.FileName = &quot;cmd.exe&quot;;p.Star...
string str = Console.ReadLine();
            System.Diagnostics.Process p = new System.Diagnostics.Process();
            p.StartInfo.FileName = "cmd.exe";
            p.StartInfo.UseShellExecute = false;    //是否使用操作系统shell启动
            p.Sta
				
C++中调用cmd命令的方法1、cmd函数修改系统时间2、cmd函数修改控制台颜色3、通过cmd函数打开某个指定路径的文件4、cmd命令怎样打开网页 大家现在可能还在为C++自动化犯愁吧!今天我就来和大家分享一下我自己的一些经验,对于新手小白分为两种: cmdcmdcmdcmd新手小白会熟练操作并深入了解电脑暂未熟练操作并深入了解电脑了解并能够熟练使用cmd并不是非常了解但是知道一点 但是各位小白...
public class CmdHelper private static string CmdPath = @"C:\Windows\System32\cmd.exe"; /// <summary> /// 执行cmd命令
这次分享使用Metrics.net + influxdb + grafana 构建项目自动化监控和预警方案。通过执行耗时,定位哪些接口拖累了服务的性能;通过请求频次,设置适当的限流和熔断机制,拦截非法或不合理的请求,保障服务的可用性。本次内容较多,部分详细内容将使用链接方式提供。 动手前,需下准备以下工具: 1、influxdb    下载地址: https://portal.influxda...
Unable to cast COM object of type Microsoft.Office.Interop.Excel.ApplicationClass' ... xfengz1x: 你这不对吧,报错是{000208D5-0000-0000-C000-000000000046,删的不是那个20813路径 使用Ntrip协议连接CORS服务器获取差分数据-Java 爱吃芹菜炒肉的哈密瓜: Android 10 定位问题,获取NMEA(支持5.0~10.0) yhm2046: 你好可以给源码看下吗谢谢 PostgreSQL:bytea字段读取结果错误 解决了问题 ,点赞 使用Ntrip协议连接CORS服务器获取差分数据-Java 张小花还是个孩子。: java如何解析返回的RTCM类型的byte[]呢