09-12-2026, 05:09 AM
I'm also considering to use MSI for other reason - less AV false positives.
To download files, LA and LA-setup use the `HttpClient` class (.NET).
What is the download time of offline-1.zip.lzma ?:
- browser
- LA-setup
- HttpClient:
- curl:
On my PC the first 3 take ~3 s. Curl is slower.
To download files, LA and LA-setup use the `HttpClient` class (.NET).
What is the download time of offline-1.zip.lzma ?:
- browser
- LA-setup
- HttpClient:
internet.http.Get("https://github.com/qgindi/LibreAutomate/releases/download/v1.16.5/offline-1.zip.lzma", true).Download(folders.Temp + "offline-1.zip.lzma");- curl:
run.console("curl.exe", $"""-L -o "{folders.Temp + "offline-1.zip.lzma"}" "https://github.com/qgindi/LibreAutomate/releases/download/v1.16.5/offline-1.zip.lzma" """);On my PC the first 3 take ~3 s. Curl is slower.
