Windows & Domino Server Automated Restart

What’s the best way and how to have domino server shutdown then wait a few minutes then have windows 2003 server restart automaticlly on a schedule. We would like to have this process run automatically once a month or once every two months.

Subject: Windows & Domino Server Automated Restart

You could do it like this…

Create 2 .bat file. 1 Domino Shut down the other Windows server restart. Then schedule the task in Windows to run the first one then schedule the other to run 10 mins after depending on shut down time of Domino.

Domino Shutdown

net stop “Lotus Domino Server (LotusDominoServername)”

Windows shutdown script

shutdown -r -f -t 60

Just an idea… there will be other ways like program file to stop the domino server and

Subject: RE: Windows & Domino Server Automated Restart

Thanks.Your suggestion worked good on my test server.

Subject: RE: Windows & Domino Server Automated Restart

You are welcome