vote up 2 vote down star

I have a problem where the user has set their locale (German) which is different that the Language Windows was installed as (English). Is there a way to discover what language windows was installed to use vs. what locale the user has set? I should note the issue is I am creating a Share and I set the permissions based on the Locale so if the User has set the Locale to German the permission for "Everyone" is "Jeder" but if the OS is setup for English this will fail since the is not an Id for "Jeder"

Thanks

flag

50% accept rate
Update: The registry value to lookup is... HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Language\InstallLanguage which returns a four digit language code. – Javamann Jun 4 at 23:09

4 Answers

vote up 0 vote down check

Windows has the concept of the "UserLanguage" and the "SystemLanguage". What you are asking for is the SystemLanguage. Get that, and you'll have the correct answer.

Update: The Win32 function you want is GetSystemDefaultUILanguage()

Retrieves the language identifier for the system default UI language of the operating system, also known as the "install language" on Windows Vista and later.

http://msdn.microsoft.com/en-us/library/dd318123(VS.85).aspx

Note that Windows Installer can query the property "SystemLanguageId". (in case you're interested from an instller point of view)

link|flag
I'm using InstallAnywhere which doesn't appear to have access to SystemLanguageId. I can just do the registry lookup call instead. – Javamann Jun 4 at 23:10
Not exactly what I was looking for but it pointed me to where the answer was (after 40 google searches) – Javamann Jun 4 at 23:13
vote up 0 vote down

The question's title and the question itself are different issues. You're trying to create an "Everyone" SID, but you're going about it in a way that depends on the locale. The solution to your problem is to not use a locale-dependent method. Use the CreateWellKnownSid API. The MSDN page on CreateWellKnownSid even has code for creating an Everyone SID.

link|flag
I am trying to set share permissions from InstallAnywhere and limited in options. Thanks for the pointer to the Windows API. – Javamann Jun 5 at 5:14
vote up 0 vote down

Why would you be coding against the word "Everyone" or "Jeder"? Isn't there a variable you can check?

link|flag
Being windows I am sure this is. – Javamann Jun 4 at 23:11
vote up 0 vote down

I imagine you could enumerate the language packs installed, but might not be able to retrieve what language was used during the install unless you have access to the install logs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.