I want to ask for you guys for help, I want to know how many backups my VBRjobs have made x Month, as well as how many Data was transfered x Month . I made a Script and I compared the results with the Report "Job History" and I saw that powershell doesn´t bring Information when the Backup Type is "Mixed". This is my Script:
#Calculate Number of Backups x Jobs
$sesion= Get-VBRBackupSession |where {($_.JobType -eq "Backup")}|Measure-Object |select Count
$totalBackups= $sesion -replace "@{Count=","" -replace "}",""
#Total of Data transfered x Month
$tasksession= Get-VBRBackupSession |where {($_.JobType -eq "Backup")}| Get-VBRTaskSession
$transfer= $tasksession| select @{N='TransferedSizeGB';E={[Math]::round([Decimal]($tasksession.Progress.TransferedSize |Measure-Object -Sum).Sum/1TB, 2)} }|select -First 1
$totalSize= $transfer -replace "@{TransferedSizeGB=","" -replace "}",""
Write-Host "Total Backups is: $totalBackups Backups"
Write-Host "Total Transfered Backup Size is: $totalSize TB"
My Question is: How can I include the "Mixed" backups in my Script ?
Thanks for your help

Best Regards,
Camilo TN