Asnp VeeamPSSnapin
foreach ($Job in (Get-VBRJob | where {$_.JobType -eq "Backup"}))
{
$Job.Name
foreach ($prox in ($job | get-vbrjobproxy)) {
$prox.name
}
}
If a job is set to use one or more proxyies I see the name of the job and the list of the proxyies.
If the job is confnggured for automatic selection I get an orange message that sounds like "WARNING: Automatic selection is enabled." and the list af all the available proxyies.
How can I remove the orange message or, even better, intercept it and manage inside an (if automatic selection is enabled, then ...)?
Regards
marius