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?
|
feedback
|
|
Sure. Build it as a winforms app and never show your form. | |||||||||||
feedback
|
|
Borrowed from MSDN (link text):
| |||
|
feedback
|
|
Schedule the task to run as a different user than your account and you won't get a window popping up . . . | |||
|
feedback
|
|
Why don't you make the application a Windows Service? | |||||||||||||
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 | |||
|
feedback
|