PowerShell script exchange
Post Reply
jjacquemont
Lurker
Posts: 2
Liked: never
Joined: Jun 25, 2025 6:47 am
Contact:

PowerShell Script to Identify Backup Metadata Not Converted to V12 Format (Veeam v13)

Post by jjacquemont »

Hello,

My question concerns writing a PowerShell script to ensure that my clients Veeam servers are compatible with the upgrade to Veeam version 13, in accordance with the information provided in this post: veeam-backup-replication-f2/deprecated- ... 97087.html
One of the configurations that may block the upgrade to v13 is the following:
Jobs with backup metadata still not upgraded to V12 format

How can I check the format of the backup metadata using PowerShell?

Thank you,
Mildur
Product Manager
Posts: 10629
Liked: 2861 times
Joined: May 13, 2017 4:51 pm
Full Name: Fabian K.
Location: Switzerland
Contact:

Re: PowerShell Script to Identify Backup Metadata Not Converted to V12 Format (Veeam v13)

Post by Mildur »

Hi JJacquemont

Have you tried to filter jobs by "IsTruePerVmContainer"?

Code: Select all

Get-VBRBackup | Where-Object {($_.IsTruePerVmContainer -eq 0) -And (($_.TypeToString -eq "VmWare Backup") -or ($_.TypeToString -eq "HyperV Backup" ) -or ($_.TypeToString -eq "Backup Copy" ))} | ft -AutoSize
Best,
Fabian
Product Management Analyst @ Veeam Software
jjacquemont
Lurker
Posts: 2
Liked: never
Joined: Jun 25, 2025 6:47 am
Contact:

Re: PowerShell Script to Identify Backup Metadata Not Converted to V12 Format (Veeam v13)

Post by jjacquemont »

Hello Fabian,

Thanks for your response! Indeed, I ended up using the "IsTruePerVmContainer" property.
My only issue is that I’m struggling to interpret the meaning of this property.
According to the documentation https://helpcenter.veeam.com/docs/backu ... ml?ver=120 , it seems there are several backup chain formats:
- Per-Machine Backup with Separate Metadata Files (Recommended)
- Per-Machine Backup with Single Metadata File (Legacy)

How can I know which of the two the "IsTruePerVmContainer" property refers to, especially since I'm not sure whether the Per-Machine Backup with Single Metadata File format is actually supported in Veeam version 13?

Thank you
Post Reply

Who is online

Users browsing this forum: Semrush [Bot] and 4 guests