Jan 27, 2005 #1 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
Hello, I need to start and stop all engines in a script. We have ARCserve 2000 on NT 4.0 Thanks Peter
Jan 27, 2005 1 #2 RustyMajor Technical User Joined Jan 24, 2005 Messages 83 Location US 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. Upvote 0 Downvote
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.