Set-AppvZeroPortalCmdLetConfiguration
Sets the server URL and/or connection options for all ZeroPortal cmdlets. Each parameter is optional; omitting it leaves the current value unchanged.
Syntax
Set-AppvZeroPortalCmdLetConfiguration [-BaseUrl <string>] [-SkipCertificateCheck <bool>]
Parameters
-BaseUrl<string>Base URL of the server, e.g. https://zeroportal.corp.local:7062
-SkipCertificateCheck<bool>$true to disable SSL certificate validation (self-signed / expired certs in dev). $false to re-enable validation.
Examples
Set-AppvZeroPortalCmdLetConfiguration -BaseUrl 'https://zeroportal.corp.local:7062'
Set-AppvZeroPortalCmdLetConfiguration -SkipCertificateCheck $true
Set-AppvZeroPortalCmdLetConfiguration -BaseUrl 'https://windev.local:7062' -SkipCertificateCheck $true