.Net Console Application that Doesn't Bring up a Console - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T01:41:59Zhttp://stackoverflow.com/feeds/question/934901http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/934901/net-console-application-that-doesnt-bring-up-a-console4.Net Console Application that Doesn't Bring up a ConsoleJeff2009-06-01T13:50:19Z2009-06-01T14:06:01Z
<p>I have a console application I'm using to run scheduled jobs through windows scheduler. All the communication to/from the application is in email, event logging, database logs. Is there any way I can suppress the console window from coming up?</p>
http://stackoverflow.com/questions/934901/net-console-application-that-doesnt-bring-up-a-console/934904#93490414Answer by Joel Coehoorn for .Net Console Application that Doesn't Bring up a ConsoleJoel Coehoorn2009-06-01T13:51:18Z2009-06-01T13:51:18Z<p>Sure. Build it as a winforms app and never show your form.</p>
http://stackoverflow.com/questions/934901/net-console-application-that-doesnt-bring-up-a-console/934909#9349090Answer by Badaro for .Net Console Application that Doesn't Bring up a ConsoleBadaro2009-06-01T13:52:28Z2009-06-01T13:52:28Z<p>Why don't you make the application a Windows Service?</p>
http://stackoverflow.com/questions/934901/net-console-application-that-doesnt-bring-up-a-console/934926#9349261Answer by Philippe Leybaert for .Net Console Application that Doesn't Bring up a ConsolePhilippe Leybaert2009-06-01T13:55:45Z2009-06-01T13:55:45Z<p>It's a hack, but the following blog post describes how you can hide the console window:</p>
<p><a href="http://expsharing.blogspot.com/2008/03/hideshow-console-window-in-net-black.html" rel="nofollow">http://expsharing.blogspot.com/2008/03/hideshow-console-window-in-net-black.html</a></p>
http://stackoverflow.com/questions/934901/net-console-application-that-doesnt-bring-up-a-console/934939#9349393Answer by Martin Pritchard for .Net Console Application that Doesn't Bring up a ConsoleMartin Pritchard2009-06-01T13:58:17Z2009-06-01T13:58:17Z<p>Borrowed from MSDN (<a href="http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/ea8b0fd5-a660-46f9-9dcb-d525cc22dcbd/" rel="nofollow">link text</a>):</p>
<pre><code>using System.Runtime.InteropServices;
...
[DllImport("user32.dll")]
public static extern IntPtr FindWindow(string lpClassName,string lpWindowName);
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
...
//Sometimes System.Windows.Forms.Application.ExecutablePath works for the caption depending on the system you are running under.
IntPtr hWnd = FindWindow(null, "Your console windows caption"); //put your console window caption here
if(hWnd != IntPtr.Zero)
{
//Hide the window
ShowWindow(hWnd, 0); // 0 = SW_HIDE
}
if(hWnd != IntPtr.Zero)
{
//Show window again
ShowWindow(hWnd, 1); //1 = SW_SHOWNORMA
}
</code></pre>
http://stackoverflow.com/questions/934901/net-console-application-that-doesnt-bring-up-a-console/934971#9349711Answer by Wyatt Barnett for .Net Console Application that Doesn't Bring up a ConsoleWyatt Barnett2009-06-01T14:06:01Z2009-06-01T14:06:01Z<p>Schedule the task to run as a different user than your account and you won't get a window popping up . . .</p>