6

我想运行一个 cmd 并在其中运行一些命令。我写了这段代码:

Process p = new Process();
ProcessStartInfo info =new ProcessStartInfo();

info.FileName = "cmd.exe";
info.WorkingDirectory = this.workingDirectory;
info.RedirectStandardInput = true;
info.UseShellExecute = false; 
info.CreateNoWindow = true;
p.StartInfo = info;

var x=p.Start();
using (StreamWriter sw = p.StandardInput)
{
    if (sw.BaseStream.CanWrite)
    {
        sw.WriteLine(@"set path=c:\temp"+ ";%path%");
        sw.WriteLine(@"@MyLongproces.exe");
    }
}

但它不起作用:

  1. 我看不到命令​​窗口(即使我设置info.CreateNoWindowfalse)。
  2. 我的命令没有运行。

问题是什么?我该如何解决?

  • 更新1

此代码不起作用:

  string binDirectory = Path.Combine(FileSystem.ApplicationDirectory, this.binFolderName);
  ProcessStartInfo info = new ProcessStartInfo("cmd", @"/c " + Path.Combine(binDirectory, command));
  info.RedirectStandardInput = false;
  info.RedirectStandardOutput = true;
  info.UseShellExecute = false;
  info.CreateNoWindow = false;
  System.Diagnostics.Process proc = new System.Diagnostics.Process();
  proc.StartInfo = info;
  proc.Start();
  string result = proc.StandardOutput.ReadToEnd();

没有显示 cmd 窗口,结果是“”。

但是这段代码有效:

     Process.Start(Path.Combine(binDirectory, command));

上面代码的问题是:

  1. 我无法定义工作目录。
  2. 当我不希望它显示时,它会显示一个 CMD 窗口。

知道为什么它不起作用吗?

4

8 回答 8

1

您正在设置 CreateNoWindow 选项:

info.CreateNoWindow = true;

ProcessStartInfo.CreateNoWindow - 如果进程应该在不创建新窗口来包含它的情况下启动,则为 true;否则为假。默认值为假。

于 2013-04-16T12:11:19.633 回答
0

我猜你想在这里运行 MyLongProcess.exe。如果是,则无需启动命令提示符。您可以尝试以下方法:

//Create process info and set arugments here and then assign it to process object
// If the exe does not expect any arguments, simply use line below
Process process = Process.Start("MyLongProcess.exe");
于 2013-04-16T12:21:21.423 回答
0

尽管这已经很老了,但在我看来,问题在于 of 的指定/c参数cmd。如果您指定一个带有空格的参数,则需要"在开头和结尾使用字符。所以我建议改变这个

ProcessStartInfo info = new ProcessStartInfo("cmd", @"/c " + Path.Combine(binDirectory, command));

对此。

ProcessStartInfo info = new ProcessStartInfo("cmd", string.Format("/c \"{0}\"", Path.Combine(binDirectory, command)));
于 2014-06-14T19:27:08.923 回答
0

您仍然需要告诉您的进程您要运行什么命令。在这种情况下,听起来您希望它启动cmd.exe

于 2013-04-16T12:11:04.203 回答
0

你可以试试这个

//Get the paths list and add your custom path to it
string paths = System.Environment.GetEnvironmentVariable("PATH") + @";C:\temp";

//Create a array consisting of all the paths
string[] pathArray = paths.Split(';');

//Search the paths for the first path in which your exe is present
string exePath = pathArray.Select(x => System.IO.Path.Combine(x, "MyLongproces.exe"))
                          .Where(x => System.IO.File.Exists(x))
                          .FirstOrDefault();

if (string.IsNullOrWhiteSpace(exePath) == false)
{
    //start your exe
    System.Diagnostics.Process.Start(exePath);
}
于 2013-04-16T12:25:24.443 回答
0

试试看:

 p.StartInfo = info;

插入

info.Arguments = "/c ping www.google.com.br"; //command here
于 2013-04-16T12:13:19.463 回答
0

为什么你写困难的东西,这里是如何运行命令:

try {

    System.Diagnostics.ProcessStartInfo procStartInfo =
        new System.Diagnostics.ProcessStartInfo("cmd", "/c " + command);

    StreamReader.procStartInfo.RedirectStandardOutput = true;
    procStartInfo.UseShellExecute = false;

    procStartInfo.CreateNoWindow = true;

    System.Diagnostics.Process proc = new System.Diagnostics.Process();
    proc.StartInfo = procStartInfo;
    proc.Start();

    string result = proc.StandardOutput.ReadToEnd();

    Console.WriteLine(result);
  }
  catch (Exception objException)
  {
        // Log the exception
  }
于 2013-04-16T12:16:44.473 回答
0

尝试添加这一行

info.Verb = "runas";
于 2014-09-09T19:26:35.377 回答