I'm using powershell automate most of my work on a daily basis.
I've been using powershell to (VM) tag our servers globally since it could be used for backup's in Veeam, I think this is very helpfull, and also allow admins who don't have access in Veeam to assign backup policies to their servers.
I've started to looking into automating SureBackup, but I've run into a MAJOR issue (for me when I want to use powershell).
When you use tags for backups, you can't do a simple "Get-VBRJobObject", as the only object in there is the tag, not the machines
Like this:
Get-VBRJob -Name "Backup Job 1" | Get-VBRJobObject -Name *ServerName*
This returns nothing, as there's no machines, only a tag
Get-VBRJob -Name "Backup Job 1" | Get-VBRJobObject -Name *TagName*
This returns the tag object, but I can't find a way to retrieve the "Veeam.Backup.Core.CObjectInJob" of the machines
And I need this type of object to run the "New-VBRSureBackupVM" commandline
Any advice on how to get this object so I can get it working ?
I'm out of ideas right now

(Case #04425786)