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?
|
|
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.
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 |
||||
|
|
|
Project + Properties, Application tab, change Output type to "Windows application". No more console window. |
|||||||
|
|
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. |
|||
|
|
|
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
|
|||||
|
|
Dirty as anything out there but: (From here)
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. |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
This is easy. Set the task to run under an account that is not your login account. |
|||
|
|