Speed test from Windows Powershell

Modified on Sun, 10 Dec 2023 at 02:53 PM

Overview: for admins who want to run a speed test from command line on MIcrosoft Windows, here's how.


Launch Powershell, then type in the following commands:


New-Item -Path "c:\" -Name "speedtestcli" -ItemType "directory"

Invoke-WebRequest https://install.speedtest.net/app/cli/ookla-speedtest-1.2.0-win64.zip -OutFile c:\speedtestcli\speedtestcli.zip

Expand-Archive -Path "c:\speedtestcli\speedtestcli.zip" -DestinationPath "c:\speedtestcli"

cd c:\speedtestcli

.\speedtest.exe


More info: https://www.speedtest.net/apps/cli

(Also available for Mac & Linux)

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article