It's suppost to retrive the user's country.. thanks...
OutFile "UserCountry.exe"
Name "Detect User Country"
Caption "Detect user Country"
XPStyle "on"
Function GetCountry
ReadRegStr $1 HKCU "Control Panel\International" "sCountry"
MessageBox MB_OK|MB_ICONINFORMATION $1
FunctionEnd
Function ".onInit"
Call "GetCountry"
Quit
FunctionEnd
Section "-boo"
;
SectionEnd