Is is possible to pass parmaters into OVF? Or does anyone have simlar issues?
The needs is to test different servers, verify each one before going live.
Currenly I’m hacking it by setting a global Variable before calling Invoke-OperationValidation
$UrlOverride = Get-Variable UrlOverride -Scope Global -ValueOnly -ErrorAction SilentlyContinue if ($UrlOverride -ne $null) { $Url = $Global:UrlOverride }
which works, but is far from ideal