Since we have a lot of backup jobs, we want to do an upgrade in small batches.
That in turn brings up the question, how do I detect backup chains in an old format and those in an incompatible format, that cannot be upgraded at all. The first question may have been answered this way by trying to convert the first 10 backup chains:
Code: Select all
Get-VbrBackup|Where-Object {$_.IsMetaExist -eq $True -and $_.IsBackup -eq $True -and $_.JobType -eq "Backup" -and $_.IsTruePerVmContainer -eq $False}|Select-Ob
ject -First 10|ForEach-Object { Upgrade-VBRBackup -Backup $_}
And please don't tell us the only way is trying to convert all and the remaining jobs are the incompatible ones!