Skip to main content

Pre-Veeam V12 Upgrade

  • March 23, 2023
  • 2 comments
  • 187 views

dips
Forum|alt.badge.img+7
  • On the path to Greatness

Prior to upgrading to Veeam V12, ensure that, "Transform previous backup chains into rollbacks" is not enabled in your environment. If it is, the upgrade will fail as per KB4390: Feature Deprecation: "Transform previous backup chains into rollbacks" (veeam.com)

I just wanted to point out a slight caveat when checking our environment. If you decide to check each job setting and disable the option, bear in mind, if you have a snapshot job with storage integration, it may still show as enabled. 

Normally a snapshot job looks like as follows without an option to select the backup chain option:

 

However, running the PowerShell command:

Get-VBRJob | where {$_.BackupTargetOptions.TransformIncrementsToSyntethic -eq $True}

returns the following:

 This can be easily sorted by running:

Set-VBRJobAdvancedBackupOptions -Job "Job Name" -TransformIncrementsToSyntetic $false

 

2 comments

Chris.Childerhose
Forum|alt.badge.img+21

Very cool PS commands.  Was glad that we did not have that in our environment before upgrading.  😁


dips
Forum|alt.badge.img+7
  • Author
  • On the path to Greatness
  • March 24, 2023

One of the reasons why I always check and double check before upgrading critical production environments. PowerShell does make it easy 😀