Code: Select all
Get-VBRJob|Set-VBRJobAdvancedStorageOptions -CompressionLevel 5
Code: Select all
Get-VBRJob|Set-VBRJobAdvancedStorageOptions -CompressionLevel 5
Code: Select all
asnp VeeamPSSnapin
Get-VBRJob | ?{$_.jobtype -eq "Replica"} | Set-VBRJobAdvancedStorageOptions -CompressionLevel 5 -StorageBlockSize KbBlockSize512
You can output the job options, using the following script:Is there a way to see the settings for my jobs?
Code: Select all
asnp VeeamPSSnapin
$Job = Get-VBRJob -name "Replication Job 1"
$Job.GetOptions()
Code: Select all
asnp VeeamPSSnapin
$Job = Get-VBRJob -name "Replication Job 1"
$Job.GetOptions().Backupstorageoptions
Anyway, if you’re willing to list all replication jobs that have “dedupe-friendly” and “WAN target” settings you should use this one-liner:I need to see which of my jobs are set to Dedupe-Friendly with WAN target as I had a co-worker modify some of the jobs to see if that helped performance
Code: Select all
Get-VBRJob | where {($_.jobtype -eq "Replica") -and ($_.Backupstorageoptions.StgBlockSize -eq "KbBlockSize256") -and ($_.Backupstorageoptions.CompressionLevel -eq 4)}
The number equivalents of compression levels are as the following:Can I somehow view my jobs compression level?
Code: Select all
0 – “none”
4 – “dedupe-friendly”
5 – “optimal”
6 – “High”
9 – "Extreme"
It sets “LAN Target” as a storage optimization level. Thanks.Also, on your example, what does -StorageBlockSize kbBlockSize512 do for my jobs?
Users browsing this forum: No registered users and 13 guests