C# - changing Registry settings doesn't work

566 Views Asked by At

I tried to change the OS's language preferences. And indeed, when I go to Control Panel I see my changes.

However, it doesn't really change something. Only when I go manually and change it in the Control Panel it changes it.

Those settings will influnce the header "Accept-Language" in the HTTP requests. I want that programically all websites will treat me as an American. So, I tried to change it manually: Control Panel-->Clock Language and Region-->Language, and then I put "English" on the top of it. It changes it, but when I do it programically as descripted it doesn't notify Windows.

        RegistryKey key = Registry.CurrentUser.OpenSubKey(@"ControlPanel\International\User Profile", true);
        string[] lang = { "fr", "en-US" };
        key.SetValue("Languages", lang, RegistryValueKind.MultiString);

Appreciate your help.

1

There are 1 best solutions below

3
On

After the settings has been applied the user has to log off and log in to apply the changes.

This is my code changing the OS language:

var registryKey = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true);
var language = {"en-US"};
registryKey .SetValue("PreferredUILanguagesPending", language, RegistryValueKind.MultiString);

Hope this helps!