Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have Console Application written in C# that is scheduled to run every 15 min. or so using the Built in Windows Task Scheduler. Every time it runs the black console box pops up for the duration of it's execution and then closes. I am not writing anything to the console. Is there a way to make this run in the background?

share|improve this question
Not from the console app itself, I think you should ask on Superuser how to configure this in the Scheduler. – Henk Holterman Apr 21 '10 at 20:25

8 Answers

up vote 19 down vote accepted

Easy!

It seems hard to believe, but works as a charm. I have used this for some setup projects, when you want to perform custom tasks with no signs of it.

  • Create the project as a Windows application Project (this is the hard part).
  • Never calls to any form, just keep on in exactly as in your console application

    class Program
    {
        static void Main(string[] args)
        {
            // just dont Application.Run(new frmMain(args));
            //... your code
        }
     }
    

This is because windows application projects are no really different than console, excepts because of the first form and references. Totally hidden execution Try it! HTH

share|improve this answer
I cant seem to make the code looks like a code - sry – Daniel Dolz Apr 21 '10 at 20:46

Project + Properties, Application tab, change Output type to "Windows application". No more console window.

share|improve this answer
2  
I had ran into the same issue, and this answer helped me far more than the accepted one. – user17753 Jul 11 '12 at 17:34
agreed - this is a great answer - really simple and works perfectly – Peter Munnings Sep 7 '12 at 15:15

What about implementing the app into a windows service? You can set the interval to 15 mins and run the operation in the timer_tick.

share|improve this answer

You can use windows API to minimize the console box. Otherwise you can make it a Windows exe that does not actually load a form and call System.Windows.Forms.Application.Run()

Code to minimize the console

[DllImport( "user32.dll" )]
public static extern bool ShowWindow( IntPtr hWnd, int nCmdShow );

public const int SW_SHOWMINIMIZED = 2;

IntPtr winHandle = System.Diagnostics.Process.GetCurrentProcess().MainWindowHandle;
ShowWindow( winHandle, SW_MINIMIZE );
share|improve this answer
1  
I was getting ready to post this! To hide the window: public const int SW_HIDE = 0; To restore: public const int SW_RESTORE = 9; – JohnForDummies Apr 21 '10 at 20:55

Dirty as anything out there but: (From here)

the process take 3 files. one launch.bat one invis.vbs and one (your program) in launch.bat(this files runs your program silently) put in... wscript.exe "C:\yourpath\invis.vbs" "your file.bat" in invis.vbs put...

CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False

and finaly in your file put whatever u want...

echo off erase c:\junk.txt well your done just open up launch.bat

Works like a charm though. What it does is launch the first bat (launch.bat), which in turn launches your service/executable in stealth. So, it's a quick blip for the original launch, then gone.

share|improve this answer

It will only show up if it's scheduled to run as the same user that's currently logged in. Create another user on the machine with a ridiculously long password, set it to be an Administrator (only if needed) and schedule the task to run as that user.

share|improve this answer

If it doesn't write anything to the console you could make it a service. http://msdn.microsoft.com/en-us/library/9k985bc9%28VS.80%29.aspx

share|improve this answer

This is easy. Set the task to run under an account that is not your login account.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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