where is siteping?
Tuesday, December 13, 2005 by peterd | Discussion: DesktopX
Hi
I'm looking for a widget or object called siteping that apparently pings an ip address and displays the response time. Apparently it comes with desktopx, but i can't find it in my installation.
Anyone have a link or copy?
TIA
Peter
Reply #2 Wednesday, December 14, 2005 12:20 AM

There WAS an widget/object that would ping an address and return the response time to the ping, in a graphical format. There are reviews of desktopx on the internet that even mention this object, but i can't find it. It's even mentioned in the online documentation https://www.stardock.com/products/desktopx/documentation/Tutorials/WMITut.html
Anyone?
Reply #3 Wednesday, December 14, 2005 1:56 AM
Reply #4 Thursday, December 15, 2005 7:37 AM
Sub Object_OnScriptEnter
Object.SetTimer 1,10000 ' Ping every 10 seconds
End Sub
Sub Object_OnTimer1
Object.Text = "Ping is: " & System.Ping("www.wincustomize.com") ' Change URL as appropriate
End Sub
Reply #6 Tuesday, January 10, 2006 11:24 PM
Pinglet http://www.dockex.com/?pageId=docklets#details
Requires SysStats, which can be downloaded from the same site
You have to change the IP address in the script-- the default doesn't appear to work...

Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!








Reply #1 Tuesday, December 13, 2005 2:07 PM
Create a text file named myping.cmd:
@echo.
@color 07
@netstat -n
@echo.
@ping http://www.yahoo.com
@pause
Create a New DesktopX object. Change the Object Type to Shortcut from the General panel. Set the target as a myping.cmd --you can change the ping target in the text file.