I don;t know how you can disable thism however if you want to use it, this procedure worked for me for using the CA certificate: You check the check box “use Custom CA Certificate” and Grab the CyberVision’s Certificate Text via PowerShell, by opening your Administrator PowerShell window, and copy and paste this exact command block and press Enter: $webRequest = [System.Net.WebRequest]::Create("https://<your cybervision's url>") try { $webRequest.GetResponse() } catch {} $cert = $webRequest.ServicePoint.Certificate [System.Convert]::ToBase64String($cert.Export([System.Security.Cryptography.X509Certificates.X509ContentType]::Cert), [System.Base64FormattingOptions]::InsertLineBreaks) Then certificate will be spit out. ATTENTION You need afterwards to include the above generated certificate from the powershell into this below form , and add it in the text box of the spulnk’s configuration window like this: -----BEGIN CERTIFICATE----- PASTE_YOUR_POWERSHELL_TEXT_CERTIFICATE HERE -----END CERTIFICATE-----
... View more