We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
In the Install-Remotely.ps1 script, there is a hardcode to only support tls1.2 located at line 20:
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12
My environment only supports tls1.3 connections which was causing the script to error out. To remedy this, I replaced line 20 with the following:
[Net.ServicePointManager]::SecurityProtocol = "tls13, tls12"
This allowed me to successfully download and install the application. It's not the best code, but it works well enough for what it serves.
To Reproduce Steps to reproduce the behavior:
Remotely Version Server (can be found on about page): 2024.02.23.1927 Agent (can be found in device card): 2024.02.23.1927
Expected Behavior A clear and concise description of what you expected to happen.
When running the install script, the Invoke-WebRequest should successfully process.
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional Context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Added in the latest release.
Sorry, something went wrong.
bitbound
No branches or pull requests
Describe the bug
In the Install-Remotely.ps1 script, there is a hardcode to only support tls1.2 located at line 20:
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12
My environment only supports tls1.3 connections which was causing the script to error out. To remedy this, I replaced line 20 with the following:
[Net.ServicePointManager]::SecurityProtocol = "tls13, tls12"
This allowed me to successfully download and install the application. It's not the best code, but it works well enough for what it serves.
To Reproduce
Steps to reproduce the behavior:
Remotely Version
Server (can be found on about page): 2024.02.23.1927
Agent (can be found in device card): 2024.02.23.1927
Expected Behavior
A clear and concise description of what you expected to happen.
When running the install script, the Invoke-WebRequest should successfully process.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional Context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: