Hi ,
I think you can use something like this. Im not 100% sure about the $xpath variable in your case.. becasue there's not a public list of variables to use or to do a fine tunning.
This for windows, but in case of linux , you can use check the help of Set-VBOConfigurationParameter. It works for apply pools settings at once.
This scripts take care of Proxy.xml in case of Windows Proxy or Linux Proxy (Proxy.ini)
I think you can use something like this. Im not 100% sure about the $xpath variable in your case.. becasue there's not a public list of variables to use or to do a fine tunning.
This for windows, but in case of linux , you can use check the help of Set-VBOConfigurationParameter. It works for apply pools settings at once.
This scripts take care of Proxy.xml in case of Windows Proxy or Linux Proxy (Proxy.ini)
Code:
$xpath = "/Veeam/Archiver/ObjectStorage"$key = "SkipObjectStorageVersioningValidation" $value = "True"$proxys = Get-VBOProxy -Hostname XXXXXX$pwd = ConvertTo-SecureString -String "" -AsPlainText -Force$wincredential = $winserverCredentials = Get-CredentialSet-VBOConfigurationParameter -XPath $xpath -Key $key -Value $value -Proxy $proxy -WindowsCredential $wincredential -RestartStatistics: Posted by edh — Mar 05, 2025 6:42 pm







