Page 3 of 3

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

Posted: 13 Oct 2016, 03:25
by jNizM
Added IPHelper Class in my GitHub -> Class_IPHelper.ahk

Example:

Code: Select all

MsgBox % IPHelper.ResolveHostname("google-public-dns-a.google.com")    ; -> 8.8.8.8
MsgBox % IPHelper.ReverseLookup("8.8.8.8")                             ; -> google-public-dns-a.google.com
MsgBox % IPHelper.Ping("8.8.8.8")                                      ; -> 24

MsgBox % IPHelper.ResolveHostname("autohotkey.com")                    ; -> 104.24.122.247
MsgBox % IPHelper.ReverseLookup("104.24.122.247")                      ; -> 104.24.122.247 (because no reverse pointer is set)
MsgBox % IPHelper.Ping("autohotkey.com")                               ; -> 129
Or you use the function from just me

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

Posted: 14 Oct 2016, 09:43
by Elesar
just me & jNizM: Thanks for the replies. Super busy at work the last couple of days, but I'll look at everything this weekend.