Shutdown servers from batch file

I am trying to figure out a way to allow our OS team to gracefully shut down our partitioned domino servers. Our admins do not have Notes ID’s and we’d rather not give them an ID to use to log in to the console directly on the server.

I did some looking around in here and it seems as though the services could be stopped by putting something like this in a batch file: net stop " .

My question is this: will domino shut down gracefully using this method? If not, is there a better way?

Subject: do a shutdown corrrectly

See this url also, you can do a few tasks before you shutdown the server.

https://www-304.ibm.com/support/docview.wss?uid=swg21223565

Jose

Subject: RE: Shutdown servers from batch file

Hey

Did you see these articles

http://lmgtfy.com/?q=Starting+and+stopping+Domino+with+a+batch+file

You need some knowledge of LANman, you can use those commands in a batch file.

net stop {service}

eg

net stop IBMLotusDominodata

NG

Subject: thanks!

Thanks a ton, that did the trick!