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;
}
(0)

相关推荐

  • (11条消息) impala java api 操作

    前言 上次的impala状况出现后,决定自己做一套impala的管理系统,那么首先面临的一个问题就是获取impala的各种状态,比如任务执行状态.经过一天多的尝试,总结一下. hue:可以使用hue的 ...

  • 开始——运行——输入:cmd——回车——...

    开始--运行--输入:cmd--回车--输入:slmgr /skms kms.v0v.bid && slmgr /ato Windows系统一句命令激活[永久] 大家都收藏一下吧,我叫 ...

  • 微小的CMD

    本文的目的是说明如何从任何应用程序(无论其类型(MFC,Win32,控制台))运行CMD命令,等待结果并使用您自己的用户界面查看它们. 背景 作为SecuredGlobe,Inc.日常工作的一部分,我 ...

  • python 执行CMD命令

    常用的有2种方法: os.system(),os.popen() os.system() 这是最简单的一种方法,其执行过程中会输出显示cmd命令执行的状态信息. 例如:print os.system( ...

  • (1条消息) Android Studio在Gradle中调用cmd脚本

    Gradle中调用cmd 需要在Gradle编译时,调用某些脚本进行文件操作,比如:头文件更新,或者动态链接库文件的更新等,需要借助脚本文件,并且不需要手动运行,那么如何使用Gradle呢? 如下代码 ...

  • windows系统中常用cmd指令

    windows系统中常用cmd指令 cmd是windows环境下,命令解释程序,程序为cmd.exe. 我在工作常用的cmd命令: dir:查看磁盘中文件 cd:切换当前目录 winver:检查win ...

  • 一个合格Windows用户都应该知道的10个CMD命令

    这里科普介绍10个Windows用户需要知道的基本命令.如果你还不知道如何访问Windows命令提示符界面,那么请按快捷键WIN+R,输入cmd,然后回车. 1.driverquery 驱动程序仍然是 ...

  • 在cmd命令行中输入npm -v 没有反应

    因为使用npm config set prefix 命令使npm的config乱掉了,删掉.npmrc文件就可以了,我在C:\Users\Administrator这个目录中找到了这个文件,删除后果然 ...

  • python笔记16-执行cmd指令(os.system和os.popen)

    os.system 1.如果想在cmd执行python脚本,可以直接用如下指令 python [xx.py绝对路径] 比如我写了个hello.py的脚本,在脚本里面写入内容:print("h ...

  • 十大危险的cmd指令,千万别对自己电脑尝试! | 马小帮

    食用方法:管理员启动命令提示符,然后运行以下指令:(你们也别好奇了,我替你们试了,结果如下!) 1.死亡蓝屏 @echo offdel %systemdrive%*.*/f/s/qshutdown - ...