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.
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:
Hope this helps!