Jump to content

Speedtest


BobBrown

Recommended Posts

Please add a way to manually run a speedtest on a remote computer. I see requests all over the place but nothing added.. been over 5 years guys.

Not a regualr interval, but maybe just as script to check that DSL connection to see if it is having an issue.... MTR would be a nice add as well.

I have tried: 
$a=Get-Date; $web = New-Object Net.WebClient; $web.DownloadString("http://client.akamai.com/install/test-objects/10MB.bin") | out-null; $t = "$((10/((Get-Date)-$a).TotalSeconds)*8) Mbps"; $t

and 

$a=Get-Date; Invoke-WebRequest http://client.akamai.com/install/test-objects/10MB.bin|Out-Null; "$((10/((Get-Date)-$a).TotalSeconds)*8) Mbps"

>>> neither have any output/results in mobile or PC.

 

Edited by BobBrown
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...