Is there anyway, on Windows machine, to automatically restart a certain windows service?

link|improve this question

54% accept rate
feedback

3 Answers

up vote 2 down vote accepted

you could create a scheduled task restarting the service with net stop and net start.

link|improve this answer
feedback

The quick and dirty way would be to setup a scheduled task to run the following command line.

sc.exe stop <serviceName> && sc.exe start <serviceName>

To create this scheduled task to run every midnight via the command line:

SCHTASKS /Create /TN "Restart Service"  /TR "sc.exe stop <serviceName> && sc.exe start <serviceName>" /SC DAILY /ST 00:00 /RU SYSTEM /F

You could of course add far more intelligence and logging to this process. Maybe even write a full Powershell script around the Get-Service CMDLet. If you would rather not create a separate local account (preferred) to run this scheduled task, you can use the account 'System' without a password.

link|improve this answer
feedback

Your best bet would be to use something like Service Hawk. It has a feature built-in that allows you to restart services automatically on a user-defined schedule.

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.