Keeping windows services’ running, ghetto style

A small post, but so I can have it as a reference if I ever encouter it again. We’ve setup a Windows 2003 Domain, and run DNS on both the Domain Controllers. We have terrible issues with DNS always shutting down, and disabling itself, so it won’t boot up again.

While we are breaking our heads on how this happens, we made a small two-liner script to enable a Windows service over the command line. We’ve put this in the recovery tab, and scheduled it as a task to run every hour.

The code to enable the DNS service, and to restart the service is below:


sc config DNS start= auto
net start dns

I know it’s very ghetto way of keeping DNS running, but we’re figuring out why DNS always shuts down. Until then, this provides us necesarry DNS uptime 😉

Thanks,
Michael


Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *