Easy way to auto restart a third party service in Windows

If its 3rd party service then you can make a .bat file with following command

sc stop [service_name]

sc start [service_name]

Use Task scheduler in control panel to run this .bat file after every X hours.

You may also like