I have some custom programs I've written to do various maintenance/monitoring tasks that I run periodically (some every few minutes, some as little as once a day). Is it a better practice to run them out of the task scheduler, or to run them as a windows service (triggered by an embedded timer object)?

link|improve this question

I've been using the windows service method--but seems to be a lot of programmatic overhead without a lot of gain. Installation of new versions is a little more complicated as well. – Jeff Mar 29 '09 at 21:30
feedback

2 Answers

up vote 2 down vote accepted

Here's an interesting article about services vs. sheduled tasks.

http://weblogs.asp.net/jgalloway/archive/2005/10/24/428303.aspx

I think for simple/one-off type scheduled processing, it's easier to just write a console app and run it as windows scheduled task.

However, most of the time, I end up writing a service, just so all of our services run the same way. Like Martin said Quartz.NET is really powerful for writing scheduled services, and gives you more flexibility than plain scheduled tasks.

link|improve this answer
Great link. Thanks. Clearly for what I'm using the windows scheduler is more than sufficient. – Jeff Mar 29 '09 at 21:58
feedback

EDIT: I somehow assumed you were looking for a .NET solution. If not, then please disregard my answer.


If you want to use your own windows service, then have a look at Quartz.NET:

Quartz.NET is a full-featured, open source job scheduling system that can be used from smallest apps to large scale enterprise systems.

With this library you get the flexibility of the windows task scheduler for free, but can run your own service.

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.