Skip to main content
Solved

Veeam o365 - Teams objeckt automatically remove/add

  • November 16, 2021
  • 1 comment
  • 168 views

Forum|alt.badge.img+1

Is there a way for teams to automatically remove objects from backups, i.e. team objeckts that could not be found anymore, but also to automatically include objects, with a certain prefix, in backups?

 

Thanks so far!

Best answer by Mildur

Automatic removal from the backup repository can only be done with a personal script. The product itself doesn’t have a feature like that. Only removal per retention policy, when the desired retention is reached.

You need to get a list of all existing teams in O365 (Teams Powershell Module) and remove the non existing teams from the VBO365 Backup Repository (VBO365 Powershell).

Remove-VBOEntityData - Veeam Backup for Microsoft Office 365 PowerShell Reference

 

You can use a similar approach to add teams to a job.

Get the list of teams and add it to the backup job with a powershell script:

Add-VBOBackupItem - Veeam Backup for Microsoft Office 365 PowerShell Reference 

 

 

View original
Did this topic help you find an answer to your question?

1 comment

Mildur
Forum|alt.badge.img+12
  • Influencer
  • 1035 comments
  • Answer
  • November 16, 2021

Automatic removal from the backup repository can only be done with a personal script. The product itself doesn’t have a feature like that. Only removal per retention policy, when the desired retention is reached.

You need to get a list of all existing teams in O365 (Teams Powershell Module) and remove the non existing teams from the VBO365 Backup Repository (VBO365 Powershell).

Remove-VBOEntityData - Veeam Backup for Microsoft Office 365 PowerShell Reference

 

You can use a similar approach to add teams to a job.

Get the list of teams and add it to the backup job with a powershell script:

Add-VBOBackupItem - Veeam Backup for Microsoft Office 365 PowerShell Reference 

 

 


Comment