"Tom B" <TomB[ at ]discussions.microsoft.com> wrote in message news:3DF15636-3A86-4CCF-A358-15482BDAAD86[ at ]microsoft.com...
[Quoted Text] > We have been having a problem that has been reported to microsoft and its > actaully been pushed up to their devlopers but ist going to take a while > for > a resolution. (we have DNS server stop once a week) In the mean time i > need > to write and schdeule a script to restart the DNS service once a week how > do > I write this script so i can schedule it?
Simple, just use good old DOS commands, create a batch file, and setup a scheduled task in Windows!
Batch File ---- net stop 'DNS Server' net start 'DNS Server' exit --- Then Start > Programs > Accessories > System Tools > Scheduled Tasks Add Scheduled Task - Point it to the batch file!
|