I am trying to access the Control Panel: Region and Language: Location: Current location setting using Ruby. I am only interested in the country code.
The closest I have got is the country code from the System Locale but that is not quite what I was after.
`systeminfo | findstr /B /C:"System Locale"`.to_s.upcase.strip[30..31]
I hope that someone out there might know. Thanks.
Using the Win32 API:
Documentation for
GetUserGeoID
:http://msdn.microsoft.com/en-us/library/dd318138.aspx
Documentation for
GetGeoInfo
:https://learn.microsoft.com/en-us/windows/desktop/api/winnls/nf-winnls-getgeoinfoa
To convert a GEOID to a location name you can also use this table:
http://msdn.microsoft.com/en-us/library/dd374073.aspx