How to restart Veeam backup & replication services

Dear followers;

As I have been away I will dedicate 2 new sections: Office365 & Veeam backup.

As you know sometimes  Veeam backup  can be quite tricky

In cases that you get jobs stuck or either you can’t open the console, you always can rely on restarting eventually the services and avoid an unnecessary restart

You can either make a script or use line by line the following commands

(Powershell is required )

Get-process | where {($_.Name -like “Veeam*”)} | stop-process -Force
Get-Service | where {($_.Name -like “Veeam*”)-and ($_.Status -eq “Running”)} | Stop-service -Force
Get-Service | where {($_.Name -like “Veeam*”)-and ($_.Status -eq “Stopped”)} | Start-service

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.