(view source code of geoipdemo.vbs as plain text)
Option ExplicitWScript.Echo Join( GeoIP( "www.amazon.com" ), ", " )
WScript.Echo Join( GeoIP( "208.67.219.101" ), ", " )
Function GeoIP( myHost )
' This function returns an array with the IP address, host name, city name, ' country name and country code for a specified IP address or host name. ' ' Argument: ' [string] IP address or host name ' ' Returns: ' [array of string] host name, IP address, city, country, country code ' ' Required software: ' MaxMind's GeoIP* database: http://www.maxmind.com/app/installation?city=1 ' MaxMind's GeoIP COM wrapper: http://www.maxmind.com/app/com ' System Scripting Runtime: http://www.netal.com/ssr.htm ' ' Written by Rob van der Woude ' http://www.robvanderwoude.com Dim objGeoIP, objDNS, objRE, strDNS, strHost, strIPSet objDNS = CreateObject( "SScripting.IPNetwork" )
Set objGeoIP = CreateObject( "GeoIPCOMEx.GeoIPEx" )
Set objRE = New RegExp
' Resolve the specified host name or IP addressstrDNS = objDNS.DNSLookup( myHost )
' Check if the argument is a host name or an IP addressobjRE.Pattern = "^[1-9][0-9]{0,2}(\.[0-9]{1,2}){3}$"
If objRE.Test( myHost ) Then
strIP = myHost strHost = strDNS Else strIP = strDNS strHost = myHostEnd If
With objGeoIP ' Modify the path if you installed the GeoIP* database elsewhere.set_db_path "C:\Program Files\GeoIP\"
.find_by_addr strIP
GeoIP = Array( strHost, strIP, .city, .country_name, .country_code )
End With
Set objDNS = Nothing
Set objGeoIP = Nothing
Set objRE = Nothing
End Function
page last modified: 2025-10-11; loaded in 0.0103 seconds