I am trying to creat a batch file to run ESEUTIL against my store in Exchange 2000. I have one that works with 5.5, but I need to modify it for 2000. Does anyone know the order that the services need to be shut down in so I can run the ESEUTIL /d against my Priv and Pub? Thanks in advance for any help. Here is my 5.5 batch file I use now, it works great. After this finishes I use the Shutdown utility in another batch file to reboot the server, then everything is back.
Net Stop "Microsoft Exchange Message Transfer Agent"
Net Stop "NAV for Microsoft Exchange"
Net Stop "Microsoft Exchange Event Service"
Net Stop "Microsoft Exchange Information Store"
Net Stop "Microsoft Exchange Directory"
Net Stop "Microsoft Exchange System Attendant"
c:\exchsrvr\bin\eseutil /d "e:\Exchange Databases\priv1.edb"
c:\exchsrvr\bin\eseutil /d "e:\Exchange Databases\pub1.edb"
Echo "All finished" > esutil.log
Net Stop "Microsoft Exchange Message Transfer Agent"
Net Stop "NAV for Microsoft Exchange"
Net Stop "Microsoft Exchange Event Service"
Net Stop "Microsoft Exchange Information Store"
Net Stop "Microsoft Exchange Directory"
Net Stop "Microsoft Exchange System Attendant"
c:\exchsrvr\bin\eseutil /d "e:\Exchange Databases\priv1.edb"
c:\exchsrvr\bin\eseutil /d "e:\Exchange Databases\pub1.edb"
Echo "All finished" > esutil.log