You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
If you have a proxy that has some issues when downloading files from SSL you may need to import the SSL Certificates or you can end up having the error:
The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.
To avoid that, you can add this line at the beginning of the download.ps1.erb template:
If you have a proxy that has some issues when downloading files from SSL you may need to import the SSL Certificates or you can end up having the error:
The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.
To avoid that, you can add this line at the beginning of the download.ps1.erb template:
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}
That happened to me and this line fixed this issue.
Could you please add this line in the template to avoid this error in the future?
The text was updated successfully, but these errors were encountered: