Is there a way to set time table to a process in windows services?
As in Scheduled Tasks I want to start and stop a service at a certain time.
any suggestions?
Thanks
Is there a way to set time table to a process in windows services?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The way we have done this, is to start and stop the thread at the required time. We had to do it just because we were not allowed to create scheduled tasks. Scheduled tasks are best for this kind of situation. Windows service will consume some CPU cycles even though the thread has nothing to do.
To start and stop a service you need some external component acting as kind of a monitor.
Prasad Pimparkar