In my windows, I want to schedule a windows service to start once every 10 seconds. I tried using the windows task scheduler but it only gives me an option to repeat the service daily, weekly and monthly.

Is there a way I can schedule the windows service to start once every 10 seconds using windows task scheduler?

What could be done?

link|improve this question

50% accept rate
After the service is started you can just execute the operation you want every 10 seconds from inside the service. – Cosmin Pirvu Jun 6 '11 at 8:18
What are you trying to execute every 10 seconds please? – KCotreau Jun 6 '11 at 11:17
feedback

1 Answer

To do that, you should write a windows service, as that is what they are for.

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.