up vote 9 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

feedback

5 Answers

up vote 21 down vote accepted

Sure. Build it as a winforms app and never show your form.

link|improve this answer
Any way I can do it inside the existing project so I don't have to migrate stuff? – Jeff Jun 1 '09 at 13:51
7  
Right-click the project, go to Properties, and in the form that pops up, change it from a Console app to a WinForms app, close, and recompile. – Chris Doggett Jun 1 '09 at 13:53
Thanks Chris, that worked great! – Jeff Jun 1 '09 at 14:04
You can also delete the Form class and never instantiate it – Jader Dias Oct 4 '09 at 21:49
feedback

Borrowed from MSDN (link text):

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
         }
link|improve this answer
feedback

Schedule the task to run as a different user than your account and you won't get a window popping up . . .

link|improve this answer
feedback

Why don't you make the application a Windows Service?

link|improve this answer
4  
No- scheduled jobs != windows service. Unless he's using the e-mail to kick off the processing, in which case a service is a better option. – Joel Coehoorn Jun 1 '09 at 13:53
2  
Yes, been down that road before. I use to create scheduled jobs using the service infrastructure, but eventually realized doing it that way results in lots of unnecissary code and difficult upgrades. In short, it recreates an infrastructure the task scheduler has provided for free! – Jeff Jun 1 '09 at 14:00
1  
That's fine but I don't see reasons to downvote Badaro's question. – Turro Jun 1 '09 at 15:01
feedback

It's a hack, but the following blog post describes how you can hide the console window:

http://expsharing.blogspot.com/2008/03/hideshow-console-window-in-net-black.html

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.