studiouk Posted October 13, 2016 Share Posted October 13, 2016 I would be really good if we can see the internet speed without having to log onto the computer and run speedtest.net Link to comment Share on other sites More sharing options...
Administrators Paul Posted October 13, 2016 Administrators Share Posted October 13, 2016 Hi, I've found this script on reddit which reports back the Download speed: $a=Get-Date; Invoke-WebRequest http://client.akamai.com/install/test-objects/10MB.bin|Out-Null; "$((10/((Get-Date)-$a).TotalSeconds)*8) Mbps" You can use this as an automation script and run it on demand from your phone. -Paul Link to comment Share on other sites More sharing options...
digbyp Posted October 14, 2016 Share Posted October 14, 2016 For me (Powershell 2 - yes I really must update!!!), this had an error. However, the below works (as a single line) $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 Paul and Cristian Scarafiotti 1 1 Link to comment Share on other sites More sharing options...
unchewable Posted September 2, 2022 Share Posted September 2, 2022 Trying to get this to work in a automation script for my client portal is this still the best way to do this or is there a updated way. doesn't seem to want to save in the current custom script input option Jamie Taylor 1 Link to comment Share on other sites More sharing options...
BobBrown Posted July 11, 2023 Share Posted July 11, 2023 This appears super old... over 5 years and still no functional way to run a speedtest in Pulseway? The script above simply have no output on phone or mobile. Not sure how it works but would be nice to have this feature to test a remote user's connection occasionaly/manually. Should I start a new request to have this added? Link to comment Share on other sites More sharing options...
Administrators Anne Posted July 12, 2023 Administrators Share Posted July 12, 2023 Hi @BobBrown Sorry for the late reply I was on PTO If you would like to make a new feature request you are more than welcome too. Here is the link to our request a feature page which means your request will be seen directly by the Pulseway devs. Link  Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now