However, by default, new technology called BitLooker allowing customers to easily find and reduce useless chunks of data congesting their backup storage resources is disabled for all existing jobs to ensure the jobs do not change previous behaviors.
If you want to take an advantage of this new technology and don't want to change settings of all jobs manually, here's a short script for you that is supposed to make your life easier:
Code: Select all
asnp VeeamPSSNapin
foreach ($Job in Get-VBRJob | where {$_.JobType -eq "Backup" -or $_.JobType -eq "Replica"})
{
$Options = $Job.GetOptions()
$Options.ViSourceOptions.DirtyBlocksNullingEnabled = $True
$Job.SetOptions($Options)
}