本文介绍了使用 C# 以编程方式运行命令行代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用在 Windows 命令提示符下运行的此代码..但我需要使用 C# 代码以编程方式完成此操作

I'm using this code run in windows command prompt..But I need this done programmatically using C# code

C:WindowsMicrosoft.NETFrameworkv4.0.30319>aspnet_regiis.exe -pdf "连接字符串" "C:UsersXXXDesktop连接字符串DNN"

推荐答案

您可以使用 Process.Start 方法:

You may use the Process.Start method:

Process.Start(
    @"C:WindowsMicrosoft.NETFrameworkv4.0.30319aspnet_regiis.exe",
    @"-pdf ""connection Strings"" ""C:UsersXXXDesktopconnection stringDNN"""
);

或者如果您想要更多地控制 shell 并能够捕获例如标准输出和错误,您可以使用 重载采用ProcessStartInfo:

or if you want more control over the shell and be able to capture for example the standard output and error you could use the overload taking a ProcessStartInfo:

var psi = new ProcessStartInfo(@"C:WindowsMicrosoft.NETFrameworkv4.0.30319aspnet_regiis.exe")
{
    Arguments = @"-pdf ""connection Strings"" ""C:UsersXXXDesktopconnection stringDNN""",
    UseShellExecute = false,
    CreateNoWindow = true
};
Process.Start(psi);

这篇关于使用 C# 以编程方式运行命令行代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 19:13
查看更多