码迷,mamicode.com
首页 > 其他好文 > 详细

执行CMD代码

时间:2014-08-25 14:34:54      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:blog   os   使用   io   文件   for   ar   art   div   

/// <summary>
        /// 发送CMD命令(执行命令行)
        /// </summary>
        public static void SendCMD(string pwd)
        {
            string route = ConfigurationManager.AppSettings["Rout"];
            try
            {
                var _p = new Process();
                //Process类有一个StartInfo属性,这是ProcessStartInfo类,包括了一些属性和方法
                _p.StartInfo.FileName = "cmd.exe";

                //执行的命令及参数

                //_p.StartInfo.Arguments = "/c " + " net user zwsc " + pwd;

                _p.StartInfo.Arguments = "/c " + " net user " + ConfigurationManager.AppSettings["userName"] + " " + pwd;

                _p.StartInfo.UseShellExecute = false; //关闭Shell的使用

                _p.StartInfo.RedirectStandardInput = true;

                _p.StartInfo.RedirectStandardOutput = true;

                _p.StartInfo.RedirectStandardError = true;
                _p.StartInfo.CreateNoWindow = true;//设置不显示窗口

                _p.Start(); //启动进程

                string _standardOutput = _p.StandardOutput.ReadToEnd();
                string _errorOutput = _p.StandardError.ReadToEnd();
                string[] _message = { _standardOutput, _errorOutput };
                _p.WaitForExit();
            }
            catch (Exception ex)
            {
                string file = route + DateTime.Now.ToString("yyyyMMddhhmmss") + ".txt";
                string content = ex.Message;
                if (File.Exists(file))
                {
                    //MessageBox.Show("存在此文件!");
                    FileStream myFs = new FileStream(file, FileMode.Open);
                    StreamWriter mySw = new StreamWriter(myFs);
                    mySw.Write(content);
                    mySw.Close();
                    myFs.Close();
                }
                else
                {
                    FileStream myFs = new FileStream(file, FileMode.Create);
                    StreamWriter mySw = new StreamWriter(myFs);
                    mySw.Write(content);
                    mySw.Close();
                    myFs.Close();
                    //MessageBox.Show("写入成功");
                }
            }
        }

 

执行CMD代码

标签:blog   os   使用   io   文件   for   ar   art   div   

原文地址:http://www.cnblogs.com/jysun/p/3934803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!