8

Internet speed test in Powershell | The Rambling Techie

 3 years ago
source link: https://www.ramblingtechie.co.uk/2020/07/13/internet-speed-test-in-powershell/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Internet speed test in Powershell

Ever wanted to run an internet speed test in Powershell? It’s actually pretty straight forward to do, with a basic download and a little bit of (automated) maths you can run download/upload speed tests in Powershell. The scripts can then be modified to alert you if your speed doesn’t meet your minimum expected speed.

There are two scripts below. The first will run a download and an upload speed test then output the results in the power shell window. The second will do the same, but also email the specified email address if the results are below your set minimum speed – this can then be run on schedule so you’ll be notified of any degraded performance, ideal for monitoring problematic connections.

Both examples are capable of running via a proxy server, however if you don’t want to use the proxy option, simply comment out the lines labelled by putting # at the beginning of the line or delete them completely.

Basic Download/Upload Speed Test Script
#FILE TO DOWNLOAD
$downloadurl = "URL TO TEST DOWNLOAD FILE"
$UploadURL = "URL TO TEST UPLOAD LOCATION"

#SIZE OF SPECIFIED FILE IN MB (adjust this to match the size of your file in MB)
$size = 100

#PROXY DETAILS
$proxy = "http://PROXY-SERVER:PORT"  #Comment out this line to not use a proxy

#___________________________________________________________________
#    DO NOT EDIT BELOW THIS LINE UNLESS COMMENTING OUT THE PROXY
#___________________________________________________________________

#WHERE TO STORE DOWNLOADED FILE
$documents = [Environment]::GetFolderPath("MyDocuments")
$localfile = "$documents/100mb.bin"


#RUN DOWNLOAD
$downloadstart_time = Get-Date
#$WebClientProxy = New-Object System.Net.WebProxy($proxy,$true)  #Comment out this line to not use a proxy
$webclient = New-Object System.Net.WebClient
#$webclient.proxy = $WebClientProxy  #Comment out this line to not use a proxy
$webclient.DownloadFile($downloadurl, $localfile)

#CALCULATE DOWNLOAD SPEED
$downloadtimetaken = $((Get-Date).Subtract($downloadstart_time).Seconds)
$downloadspeed = ($size / $downloadtimetaken)*8
Write-Output "Time taken: $downloadtimetaken second(s)   |   Download Speed: $downloadspeed mbps"

#___________________________________________________________________

#RUN UPLOAD
$uploadstart_time = Get-Date
$webclient.UploadFile($UploadURL, $localfile) > $null;

#CALCULATE UPLOAD SPEED
$uploadtimetaken = $((Get-Date).Subtract($uploadstart_time).Seconds)
$uploadspeed = ($size / $uploadtimetaken) * 8
Write-Output "Time taken: $uploadtimetaken second(s)   |   Upload Speed: $uploadspeed mbps" 

#___________________________________________________________________

#DELETE TEST DOWNLOAD FILE
Remove-Item –path $localfile
Download/Upload Speed Test Script with Notifications
#SITE NAME
$site = "INSERT NAME WHERE TEST IS RUN HERE FOR EMAIL"

# MINIMUM ACCEPTED THRESHOLD IN mbps (adjust this to match your minimum accepted speeds mbps)
$mindownloadspeed = 500
$minuploadspeed = 500

# FILE TO DOWNLOAD
$downloadurl = "URL TO TEST DOWNLOAD FILE"
$UploadURL = "URL TO TEST UPLOAD LOCATION"

# SIZE OF SPECIFIED FILE IN MB (adjust this to match the size of your file in MB)
$size = 100

# PROXY DETAILS
$proxy = "http://PROXY-SERVER:PORT" #Comment out this line to not use a proxy

# SMTP SETTINGS FOR EMAIL
$recipient = "EMAIL ADDRESS TO RECEIVE ALERTS"
$smtpserver = "SMTP SERVER"
$SmtpSettings = @{
To = "$recipient"
From = "EMAIL TO SEND AS"
Priority = "High"
Subject = "Low Speed Test @ $site"
SmtpServer = "$smtpserver"
}

#___________________________________________________________________
# DO NOT EDIT BELOW THIS LINE UNLESS COMMENTING OUT THE PROXY
#___________________________________________________________________


# WHERE TO STORE DOWNLOADED FILE
$documents = [Environment]::GetFolderPath("MyDocuments")
$localfile = "$documents/100mb.bin"

# WEB CLIENT VARIABLES
#$WebClientProxy = New-Object System.Net.WebProxy($proxy,$true) #Comment out this line to not use a proxy
$webclient = New-Object System.Net.WebClient
#$webclient.proxy = $WebClientProxy #Comment out this line to not use a proxy

#___________________________________________________________________

#RUN DOWNLOAD
$downloadstart_time = Get-Date
$webclient.DownloadFile($downloadurl, $localfile)

#CALCULATE DOWNLOAD SPEED
$downloadtimetaken = $((Get-Date).Subtract($downloadstart_time).Seconds)
$downloadspeed = ($size / $downloadtimetaken)*8
Write-Output "Time taken: $downloadtimetaken second(s) | Download Speed: $downloadspeed mbps"

#___________________________________________________________________

#RUN UPLOAD
$uploadstart_time = Get-Date
$webclient.UploadFile($UploadURL, $localfile) > $null;

#CALCULATE UPLOAD SPEED
$uploadtimetaken = $((Get-Date).Subtract($uploadstart_time).Seconds)
$uploadspeed = ($size / $uploadtimetaken) * 8
Write-Output "Time taken: $uploadtimetaken second(s) | Upload Speed: $uploadspeed mbps"

#___________________________________________________________________

#SEND EMAIL IF BELOW MINIMUM THRESHOLD 
if ($downloadspeed -gt $mindownloadspeed) { Write-Output "Speed is acceptable"}
else { Send-MailMessage @SmtpSettings -Body "Current download speed at $Site is $downlaodspeed mbps which is below the minimum threshold of $mindownloadspeed mbps" -ErrorAction Stop }

#___________________________________________________________________

#SEND EMAIL IF UPLOAD BELOW MINIMUM THRESHOLD 
if ($uploadspeed -gt $minuploadspeed) { Write-Output "Speed is acceptable" }
else { Send-MailMessage @SmtpSettings -Body "Current upload speed at $Site is $uploadspeed mbps which is below the minimum threshold of $minuploadspeed mbps" -ErrorAction Stop }

#DELETE TEST DOWNLOAD FILE
Remove-Item –path $localfile
Modifications

There are various modifications that could be made to this script, but it’s something I wrote quickly to allow me to run an Internet speed test in PowerShell quickly. A couple of ideas I have had but not yet had time to add are:

  • Add a progress bar for the upload and download.
  • Calculate the download size automatically so it doesn’t need to be entered into the script.
  • Add multiple download options so the script can be a portable script that you simply run, then choose the download size.
  • Add a little calculation to the email showing how much below the minimum threshold the speed actually is.
Test Download Files

If you can’t or don’t want to host them yourself, they can be downloaded from either Think Broadband or Hetzner in a variety of sizes.

Like this:

Loading...

Posted in Uncategorized


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK