vote up 5 vote down star
1

I want to run a console application that will output a file.

I user the following code:

Process barProcess = Process.Start("bar.exe", @"C:\foo.txt");

When this runs the console window appears. I want to hide the console window so it is not seen by the user.

Is this possible? Is using Process.Start the best way to start another console application?

flag

3 Answers

vote up 8 vote down check
        Process p = new Process();
        StreamReader sr;
        StreamReader se;
        StreamWriter sw;

        ProcessStartInfo psi = new ProcessStartInfo(@"bar.exe");
        psi.UseShellExecute = false;
        psi.RedirectStandardOutput = true;
        psi.RedirectStandardError = true;
        psi.RedirectStandardInput = true;
        psi.CreateNoWindow = true;
        p.StartInfo = psi;
        p.Start();

This will start a child process without displaying the console window, and will allow the capturing of the StandardOutput, etc.

link|flag
Your answer is way more informative then mine +1 – Jeremy Reagan Jan 12 at 20:51
i just had to do the very same thing not 2 hours ago :) – Jason Miesionczek Jan 12 at 20:52
vote up 3 vote down

Check into ProcessStartInfo and set the WindowStyle = ProcessWindowStyle.Hidden and the CreateNoWindow = true.

link|flag
vote up 0 vote down

We have done this in the past by executing our processes using the Command Line programatically.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.