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?
I have a console application I’m using to run scheduled jobs through windows scheduler.
Share
Sure. Build it as a winforms app and never show your form.
Just be careful, because then it’s not really a console app anymore, and there are some environments where you won’t be able to use it.