C#使用多个参数启动应用程序

时间:2010-08-11 07:33:25

标签: c# process

我一直在尝试从C#应用程序启动一个应用程序,但它无法正常启动。从cmd开始,应用程序加上参数会启动一个显示输出的小窗口,然后将应用程序最小化到系统托盘中。

使用下面的代码从C#应用程序启动应用程序会导致进程出现在任务管理器中,但没有其他内容,没有输出窗口,没有系统托盘图标。可能是什么问题?

    myProcess.StartInfo.FileName = ...;
    myProcess.StartInfo.Arguments = ...;
    myProcess.Start();

还试过传递以下内容

    myProcess.StartInfo.RedirectStandardOutput = true; //tried both
    myProcess.StartInfo.UseShellExecute = false; //tried both 
    myProcess.StartInfo.CreateNoWindow = false;

使用

    Process.Start(Filename, args)

也没用。非常感谢有关如何解决这个问题的任何帮助。

更新: 我认为问题可能是要传递给流程的多个参数

RunMode=Server;CompanyDataBase=dbname;UserName=user;PassWord=passwd;DbUserName=dbu;Server=localhost;LanguageCode=9

问候

4 个答案:

答案 0 :(得分:8)

我的代码中没有任何错误。我写了一个小程序,将其args打印到控制台

static void Main (string[] args)
{
     foreach (string s in args)
         Console.WriteLine(s);
     Console.Read(); // Just to see the output
}

然后我把它放在C:中,作为应用程序“PrintingArgs.exe”的名称,所以我写了另一个执行第一个:

Process p = new Process();
p.StartInfo.FileName = "C:\\PrintingArgs.exe";
p.StartInfo.Arguments = "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18";
p.Start();

这给了我想要的数字列表输出。调用PrintingArgs的应用程序在到达p.Start()时退出,使用p.WaitForExit();Console.Read();可以避免这种情况。 我同时使用了p.UseShellExecutep.CreateNoWindow。只有在

的情况下
p.UseShellExecute = false;
p.CreateNoWindow = true;

使PrintingArgs应用程序不显示窗口(即使我只放置p.CreateNoWindow = true它显示一个窗口)。

现在我想到,也许你正在以错误的方式传递args并使其他程序失败并立即关闭,或者你可能没有指向正确的文件。检查路径和名称,以便找出可以省略的任何错误。 另外,使用

 Process.Start(fileName, args);

不会将您使用StartInfo设置的信息用于Process实例。

希望这会有所帮助, 问候

答案 1 :(得分:5)

不确定是否有人仍在关注此事,但这是我想出的。

string genArgs = arg1 + " " + arg2;
string pathToFile = "Your\Path";
Process runProg = new Process();
try
{
    runProg.StartInfo.FileName = pathToFile;
    runProg.StartInfo.Arguments = genArgs;
    runProg.StartInfo.CreateNoWindow = true;
    runProg.Start();
}
catch (Exception ex)
{
    MessageBox.Show("Could not start program " + ex);
}

在字符串中添加空格允许将两个参数传递到我想要运行的程序中。执行代码后程序运行没有问题。

答案 2 :(得分:2)

您是否已将ProcessWindowStyle设置为隐藏? 这是我的代码,工作正常:

Process p=new Process();
p.StartInfo.FileName = filePath;//filePath of the application
p.StartInfo.Arguments = launchArguments;
p.StartInfo.WindowStyle = (ProcessWindowStyle)ProcessStyle;//Set it to **Normal**
p.Start();

答案 3 :(得分:1)

      System.Diagnostics.Process.Start(FileName,args);

例如

     System.Diagnostics.Process.Start("iexplore.exe",Application.StartupPath+ "\\Test.xml");