-
-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Somewhat an issue
The client installer takes a long time to download from any URL.
The solution
Running the client installer command in PowerShell one-liner command should include this:
$ProgressPreference = 'SilentlyContinue'; [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; {Original command}
This will hide the download progress, but it will also be much faster than current state.
Describe alternatives you've considered
I consider adding that manually every time i need to install the agent on a new computer to make it super fast.
Additional context
The above mentioned code resolves the issue of a slow download, even tho it's just a small installation program.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Projects
Status
Up Next