Situation: The client has Barracuda backup. It keeps having problem and needs to restart some services. This article shows how to create a batch file command to restart those service.
We will create a batch file including use net stop [service name]
to stop the services and then net start [service name]
to start them up again.
- Find the service name.
2. Find the Service name, for example, Barracuda Backup Agent’s Service name is bbagent.
3. Try these commands and make sure they are working.
net stop
bbagent
net st
art bbagent
4. Now, create a batch file these commands:
net stop
bbagent
net st
art bbagent
5. Create Scheduler task to run the batch file.