Veeam

From Piszczynski

Veeam Issues

Fixing issues with veeam:

  • Check that deduplication has run correctly
  • check that merge jobs have been running, if jobs have not been running then all space on repo may be used up due to space not being available to run the merge job - this causes big issues as there will not be enough space to get it working again without adding space to the repo or deleting recovery points.
  • Check number of recovery points being kept matches the number set in job settings


Veeam Powershell

Script to Get details on All restore points per VM:

  • Get-VBRrestorepoint | select -Property Name,VmName,CreationTime | export-csv <Filepathway>


Veeam for O365 get users consuming licences for O365 backup

  • $org = Get-VBOOrganization -Name "nameoftheorg"
  • $users = Get-VBOOrganizationUser -Organization $org -Type user
  • $protectedusers = $users | Where-Object {$_.IsBackedUp -eq "True"}