.Net Console Application that Doesn't Bring up a Console - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:41:59Z http://stackoverflow.com/feeds/question/934901 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/934901/net-console-application-that-doesnt-bring-up-a-console 4 .Net Console Application that Doesn't Bring up a Console Jeff 2009-06-01T13:50:19Z 2009-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#934904 14 Answer by Joel Coehoorn for .Net Console Application that Doesn't Bring up a Console Joel Coehoorn 2009-06-01T13:51:18Z 2009-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#934909 0 Answer by Badaro for .Net Console Application that Doesn't Bring up a Console Badaro 2009-06-01T13:52:28Z 2009-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#934926 1 Answer by Philippe Leybaert for .Net Console Application that Doesn't Bring up a Console Philippe Leybaert 2009-06-01T13:55:45Z 2009-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#934939 3 Answer by Martin Pritchard for .Net Console Application that Doesn't Bring up a Console Martin Pritchard 2009-06-01T13:58:17Z 2009-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#934971 1 Answer by Wyatt Barnett for .Net Console Application that Doesn't Bring up a Console Wyatt Barnett 2009-06-01T14:06:01Z 2009-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>