When I start a new process, what difference does it make if I use the

WindowStyle = hidden

or the

CreateNoWindow = true

property of the ProcessStartInfo class?

link|improve this question
feedback

3 Answers

up vote 9 down vote accepted

As Hans said, WindowStyle is a recommendation passed to the process, the application can choose to ignore it.

CreateNoWindow controls how the console works for the child process, but it doesn't work alone.

CreateNoWindow works in conjunction with UseShellExecute as follows:

To run the process without any window:

ProcessStartInfo info = new ProcessStartInfo(fileName, arg); 
info.CreateNoWindow = true; 
info.UseShellExecute = false;
Process processChild = Process.Start(info); 

To run the child process in it's own window (new console)

UseShellExecute=true, which is the default value.
ProcessStartInfo info = new ProcessStartInfo(fileName, arg); 
Process processChild = Process.Start(info); // separate window

To run the child process in the parent's console window

UseShellExecute=false.
ProcessStartInfo info = new ProcessStartInfo(fileName, arg); 
info.UseShellExecute = false; // causes consoles to share window 
Process processChild = Process.Start(info); 
link|improve this answer
1  
One thing worth noting here that I learned the hard way: if you create a Process and then modify its StartInfo, you will get a different behavior than if you were to create a ProcessStartInfo and then use Process.Start(). Specifically, the former doesn't appear to respect CreateNoWindow. – Ari Roth May 24 '11 at 22:04
feedback

CreateNoWindow only applies to console mode apps, it won't create the console window.

WindowStyle only applies to native Windows GUI apps. It is a hint passed to the WinMain() startup function of such a program, telling it how to show its main window. This is the same hint that appears as the "Run" setting in a desktop shortcut. Note that "hidden" is not an option there, not every Windows program honors that request.

link|improve this answer
feedback

Using Reflector, it looks like WindowStyle is used if UseShellExecute is set, otherwise it uses CreateNoWindow.

In MSDN's example, you can see how they set it:

// Using CreateNoWindow requires UseShellExecute to be false
myProcess.StartInfo.UseShellExecute = false;
// You can start any process, HelloWorld is a do-nothing example.
myProcess.StartInfo.FileName = "C:\\HelloWorld.exe";
myProcess.StartInfo.CreateNoWindow = true;
myProcess.Start();

In the other example, its just below because UseShellExecute is defaulted to true

// UseShellExecute defaults to true, so use the WindowStyle
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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