Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

start and stop engines by script 1

Status
Not open for further replies.

p55kl

Technical User
Joined
Jan 26, 2005
Messages
1
Location
DE
Hello,
I need to start and stop all engines in a script.
We have ARCserve 2000 on NT 4.0

Thanks

Peter
 
You can write a batch file to do the following:
net stop "arcserve database engine"
net stop "arcserve job engine"
net stop "arcserve tape engine"

To start them again, do the following:
net start "arcserve database engine"
net start "arcserve job engine"
net start "arcserve tape engine"

Save the two files individually as StopArcServe.bat and StartArcServe.bat or whatever you want.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top