CLI SpeedTest
Well since CLI SpeedTest from Ookla is a thing, but it kind of sucks, have this.
Batch:
cd %temp% && powershell -c "Invoke-WebRequest -Uri 'https://git.icanhazfiles.com/cmyron/run-speedtest/-/raw/main/Run-SpeedTest.ps1?inline=false' -OutFile '.\Run-SpeedTest.ps1'" && powershell.exe -Executionpolicy unrestricted -command .\Run-SpeedTest.ps1 && rm .\Run-SpeedTest.ps1
PowerShell:
cd $env:temp; powershell -c "Invoke-WebRequest -Uri 'https://git.icanhazfiles.com/cmyron/run-speedtest/-/raw/main/Run-SpeedTest.ps1?inline=false' -OutFile $env:temp'\Run-SpeedTest.ps1'"; powershell.exe -Executionpolicy unrestricted -command .\Run-SpeedTest.ps1; rm .\Run-SpeedTest.ps1
Source:
Chandler Myron / Run-SpeedTest
GitLab Community Edition