I want to add new Azure blob storage accounts to an existing backupjob in VBR via powershell. I try something like:
Code: Select all
$srv = Get-VBRUnstructuredServer -name "StorageAccountName"
$object = New-VBRObjectStorageBackupJobObject -Server $srv
$job = Get-VBRUnstructuredBackupJob -name "BKP_Job_01"
Set-VBRObjectStorageBackupJob -job $job -BackupObject $object -name "StorageAccountName"

Is there a way to "add" additional objects (Azure blob storage accounts in my case) to an existing Unstructured Data object job via powershell?
thx,
sandsturm