Restart Windows Service Using Commands
Views (0)

The below Windows command script was created to stop the named service, wait 30 seconds and then start the service again:
@echo off
net stop {service name}
timeout 30
net start {service name}
exit
Change the highlighted section to the name of the service to be stopped and started.
Read original post Restart Windows Service Using Commands at azurecurve|Ramblings of an IT Professional
This was originally posted here.
*This post is locked for comments