Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Schedule Windows Service with Quartz.NET

I want to schedule my windows service with Quartz.NET.I tried some examples but,i can't schedule my windows service.How can i do it?

Thanks.

like image 433
Fatih Senel Avatar asked Oct 30 '10 15:10

Fatih Senel


1 Answers

Well, you're not actually "scheduling" your windows service. The Quartz.Net server can run as a windows service and then look at your quartz_jobs.xml to determine the time/frequency (or whatever you have setup as a trigger) to fire your jobs you have defined.

Check out this blog post series for more info - http://jvilalta.blogspot.com/2009/03/getting-started-with-quartznet-part-1.html

It was helpful for me to get started versus the tutorials on the Quartz.Net site.

like image 165
adammokan Avatar answered Sep 24 '22 08:09

adammokan