C# 运行cmd命令的代码

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Diagnostics;
  
namespace ConsoleApplication1
{
    class command
    {
        public static string startcmd(string command)
        {
            string output = "";
            try
            {
  
                Process cmd = new Process();
                cmd.StartInfo.FileName = command;
  
                cmd.StartInfo.UseShellExecute = false; 
  
                cmd.StartInfo.RedirectStandardInput = true; 
                cmd.StartInfo.RedirectStandardOutput = true;
  
                cmd.StartInfo.CreateNoWindow = true;
                cmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
  
                cmd.Start(); 
  
                output = cmd.StandardOutput.ReadToEnd();
                Console.WriteLine(output);
                cmd.WaitForExit();
                cmd.Close();
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }
            return output;
        }
        public static string startcmd(string command, string argument)
        {
            string output = "";
            try
            {
                Process cmd = new Process();
  
                cmd.StartInfo.FileName = command;
                cmd.StartInfo.Arguments = argument;
  
                cmd.StartInfo.UseShellExecute = false; 
  
                cmd.StartInfo.RedirectStandardInput = true; 
                cmd.StartInfo.RedirectStandardOutput = true; 
  
                cmd.StartInfo.CreateNoWindow = true;
                cmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
  
                cmd.Start(); 
  
                output = cmd.StandardOutput.ReadToEnd();
                Console.WriteLine(output);
                cmd.WaitForExit();
                cmd.Close();
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }
            return output;
        }
    }
}