Skip to content

Instantly share code, notes, and snippets.

@niko-la-petrovic
Created March 26, 2022 13:49
Show Gist options
  • Save niko-la-petrovic/1dc90fee4be9e812c49acda25ca7375b to your computer and use it in GitHub Desktop.
Save niko-la-petrovic/1dc90fee4be9e812c49acda25ca7375b to your computer and use it in GitHub Desktop.
Speedtest to CSV
// CLI util at https://www.speedtest.net/apps/cli
$results = 1..10 | % { .\speedtest.exe -f json }
$results | % { $j = ConvertFrom-Json $_; @{download=$j.download.bandwidth; upload=$j.upload.bandwidth; ping=$j.ping.latency; jitter = $j.ping.jitter}} | ConvertTo-Csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment