However I am running into what seems 2 limitations in the powershell commandlets. (Running v12 with the april patch)
1. How can we see what source repositories are currently being used?
With the following code snippet I can read if an alternative source is configured but is doesn't tell me what repo is used:
Code: Select all
$job = Get-VBRJob -name 'jobname'
$job.Options.ReplicaSourceOptions.Backup2Vi
2. How can we disable replicating from a source repository for Hyper-V?
For VMWARE we can simply use the "-ReplicateFromBackup" property like in the following snippet:
Code: Select all
Set-VBRViReplicaJob -ReplicateFromBackup:$false
However this property does not seem to exist for the Hyper-V equivalent 'Set-VBRHvReplicaJob'
Source: https://helpcenter.veeam.com/docs/backu ... ml?ver=120
Is there any alternative way to do this?