Skip to content

[FEATURE] - Resolve slow PowerShell installation of the agent #88

@mattish91

Description

@mattish91

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 request

Projects

Status

Up Next

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions