Windows service to run at certain time

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a windows service that I want to carry out an action on a certain day
of the week at a certain time and if the time is missed for some reason, I
want it to be carried out as soon as the service starts again.

Any ideas on how to go about this?
Thanks!
 
A windows service is pretty much designed to start when th ePC is
powered up, and continue until it is shutdown. Within that, setting a
timer should allow to the perform some action at a set time. Picking
up missed tiems would probably need you to write the last run time to
the registry, and check it each time the service starts.
 
Ok...after this brief explanation of what a service is...
Can someone please give me some input on the problem at hand?

Thank you agian.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top