-
Cmd重定向
1、执行单条cmd命令
public static string ExecuteCmd(string command) { Process p = new 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.StartInfo.Arguments = "/c " + command;///c代表执行命令后关闭cmd.exe /k参数则不关闭 p.Start();//启动程序 //消除三行启动信息 p.StandardOutput.ReadLine(); p.StandardOutput.ReadLine(); p.StandardOutput.ReadLine(); //向cmd窗口发送输入信息 p.StandardInput.WriteLine(command); p.StandardInput.WriteLine("exit"); string result = p.StandardOutput.ReadToEnd().Replace(Environment.CurrentDirectory, ""); string error = p.StandardError.ReadToEnd(); if (!string.IsNullOrWhiteSpace(error)) result = result + "\r\n<Error Message>:\r\n" + error; p.WaitForExit(); p.Close(); return result; }
2、一次执行多条cmd命令
public static string ExecuteCmd(string[] commands) { Process p = new 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.StandardInput.AutoFlush = true;//每次写入命令后刷新,报未StandardInput未重定向 //p.StartInfo.Arguments = "/c " + command;///c代表执行命令后关闭cmd.exe /k参数则不关闭 p.Start();//启动程序 //消除三行启动信息 p.StandardOutput.ReadLine(); p.StandardOutput.ReadLine(); p.StandardOutput.ReadLine(); //向cmd窗口发送输入信息 foreach (string cmd in commands) { p.StandardInput.WriteLine(cmd); p.StandardInput.Flush(); } p.StandardInput.WriteLine("exit"); string result = p.StandardOutput.ReadToEnd().Replace(Environment.CurrentDirectory, ""); string error = p.StandardError.ReadToEnd(); if (!string.IsNullOrWhiteSpace(error)) result = result + "\r\n<Error Message>:\r\n" + error; p.WaitForExit(); p.Close(); return result; }
3、利用cmd重定向注册DLL、创建服务、加载证书
public static string RegsvrFile(string filePath, bool reg = true, bool fileBit64 = false) { string result; string[] commands = { "", "" }; if (!fileBit64 && Environment.Is64BitOperatingSystem) commands[0] = "cd /d %WinDir%\\SysWOW64"; if (reg) commands[1] = "regsvr32 /s \"" + filePath + "\""; else commands[1] = "regsvr32 /u /s \"" + filePath + "\""; if (string.IsNullOrWhiteSpace(commands[0])) result = CmdOper.ExecuteCmd(commands[1]); else result = CmdOper.ExecuteCmd(commands); return result; } public static string ScCreate(string filePath, string serviceName, string displayName, string description, string start="auto", string depend=null) { string result; string[] commands = { "", "" }; if (string.IsNullOrWhiteSpace(depend)) { commands[0] = string.Format("sc create {0} binPath= \"{1}\" type= share start= {2} error= ignore DisplayName= \"{3}\"", serviceName, filePath, start, displayName); } else { commands[0] = string.Format("sc create {0} binPath= \"{1}\" type= share start= {2} error= ignore DisplayName= \"{3}\" depend= {4}", serviceName, filePath, start, displayName, depend); } if (!string.IsNullOrWhiteSpace(description)) { commands[1] = string.Format("sc description {0} \"{1}\"", serviceName, description); } if (string.IsNullOrWhiteSpace(commands[1])) result = CmdOper.ExecuteCmd(commands[0]); else result = CmdOper.ExecuteCmd(commands); return result; } public static string ScStart(string serviceName) { string command = "net start " + serviceName; return CmdOper.ExecuteCmd(command); } public static string ScStop(string serviceName) { string command = "net stop " + serviceName; return CmdOper.ExecuteCmd(command); } public static string ScDelete(string serviceName) { string[] commands = { "net stop " + serviceName, "sc delete " + serviceName }; return CmdOper.ExecuteCmd(commands); } public static string CertFile(string filePath, bool install=true) { string result; string[] commands = { "", "" }; if (Environment.Is64BitOperatingSystem) commands[0] = "cd /d %WinDir%\\SysWOW64"; if (install) commands[1] = "certutil -addstore root \"" + filePath + "\""; else commands[1] = "certutil -delstore root \"" + filePath + "\""; if (string.IsNullOrWhiteSpace(commands[0])) result = CmdOper.ExecuteCmd(commands[1]); else result = CmdOper.ExecuteCmd(commands); return result; }
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式