cancel
Showing results for 
Search instead for 
Did you mean: 

Stop 4 Services with pre-command

Carlo_Rossi
Level 3
Partner
Can I stop 4 services before start the backup process?
What is the sintax?
1 REPLY 1

Hywel_Mallett
Level 6
Certified
You could easily do it using a batch script.

Create a text document, and put in something like:

net stop "Backup Exec DLO Administration Service" > nul
net stop "Backup Exec Agent Browser" > nul
net stop "Backup Exec Job Engine" > nul
net stop "Backup Exec Server" > nul
net stop "Backup Exec Device & Media Service" > nul
net stop "Backup Exec Remote Agent for Windows Servers" > nul
net stop "Backup Exec Naming Service" > nul

Obviously change the service names as appropriate!

Save and exit the document, then change the file extension from .txt to .bat

Then in the pre-backup command, enter the full patch to your newly-created batch file.