-
- Expert
- Posts: 114
- Liked: 16 times
- Joined: Dec 10, 2018 10:59 am
- Full Name: Robert Atkinson
- Contact:
How to Select Upgradable Repositories
Anyone know where the upgradable flag is stored for the Upgrade-VBRBackup cmdlet? Basically, I'm trying to work out which repositories still need upgrading to the new v12 format.
I've listed out the Get-VBRRepository object, but the only field showing is UsePerVMBackupFiles. I can't see the equivalent 'UseIndividualMetadataFiles' anywhere.
Cheers, Rob.
I've listed out the Get-VBRRepository object, but the only field showing is UsePerVMBackupFiles. I can't see the equivalent 'UseIndividualMetadataFiles' anywhere.
Cheers, Rob.
-
- Product Manager
- Posts: 10086
- Liked: 2688 times
- Joined: May 13, 2017 4:51 pm
- Full Name: Fabian K.
- Location: Switzerland
- Contact:
Re: How to Select Upgradable Repositories
Hi Robert
You don't upgrade repositories, you upgrade backups.
So you should use Get-VBRBackup to determine which backups were not upgraded yet.
If I remember correctly, you can use property IsTruePerVmContainer to check for non-upgraded backup jobs.
Best,
Fabian
You don't upgrade repositories, you upgrade backups.
So you should use Get-VBRBackup to determine which backups were not upgraded yet.
If I remember correctly, you can use property IsTruePerVmContainer to check for non-upgraded backup jobs.
Best,
Fabian
Product Management Analyst @ Veeam Software
-
- Expert
- Posts: 114
- Liked: 16 times
- Joined: Dec 10, 2018 10:59 am
- Full Name: Robert Atkinson
- Contact:
Re: How to Select Upgradable Repositories
Ah, the cmdlet accepts a repository.
No worries - I'll try upgrading by backup instead.
Code: Select all
Upgrade-VBRBackup [-BackupRepository <CBackupRepository>] [-Force] [-RunAsync] [<CommonParameters>]
-
- Product Manager
- Posts: 10086
- Liked: 2688 times
- Joined: May 13, 2017 4:51 pm
- Full Name: Fabian K.
- Location: Switzerland
- Contact:
Re: How to Select Upgradable Repositories
It accepts either repositories or backups.
You can run it against an entire repository. Already upgraded backups won't be upgraded again. They shouldn't be touched.
Best,
Fabian
Code: Select all
Upgrade-VBRBackup [-Backup <CBackup[]>] [-Force] [-RunAsync] [<CommonParameters>]
Best,
Fabian
Product Management Analyst @ Veeam Software
-
- Expert
- Posts: 114
- Liked: 16 times
- Joined: Dec 10, 2018 10:59 am
- Full Name: Robert Atkinson
- Contact:
Re: How to Select Upgradable Repositories
Just noticed the JobType also seems to change after the upgrade, so another way to select outstanding backups...
Code: Select all
get-vbrbackup -name *esk*_backup | select jobname,jobtype
JobName JobType
------- -------
PROD_DAILY_REMOTEDESKTOP_BACKUP PerVmParentBackup
PROD_DAILY_REMOTEDESKTOP_BACKUP PerVmParentBackup
DEV_WEEKLY_ESK_BACKUP PerVmParentBackup
PROD_DAILY_ESK_BACKUP Backup
DEV_WEEKLY_ESK_BACKUP PerVmParentBackup
PROD_DAILY_ESK_BACKUP PerVmParentBackup
Who is online
Users browsing this forum: No registered users and 16 guests