Retrieves information about the geographical location of the user
#include <WinAPILocale.au3>
_WinAPI_GetUserGeoID ( )
Success: | The geographical location identifier of the user. |
Failure: | (-1) GEOID_NOT_AVAILABLE. |
Search GetUserGeoID in MSDN Library.
#include <APILocaleConstants.au3>
#include <WinAPILocale.au3>
Local $iID = _WinAPI_GetUserGeoID()
ConsoleWrite('ID: 0x' & Hex($iID) & @CRLF)
ConsoleWrite('Latitude: ' & _WinAPI_GetGeoInfo($iID, $GEO_LATITUDE) & @CRLF)
ConsoleWrite('Longitude: ' & _WinAPI_GetGeoInfo($iID, $GEO_LONGITUDE) & @CRLF)
ConsoleWrite('Name: ' & _WinAPI_GetGeoInfo($iID, $GEO_FRIENDLYNAME) & @CRLF)
ConsoleWrite('ISO code: ' & _WinAPI_GetGeoInfo($iID, $GEO_ISO3) & @CRLF)