Configuring System account IE language settings

Caporegime
Joined
25 Jul 2003
Posts
40,134
Location
FR+UK
Hi,

I need to change the language of the system account browser, preferably via an sccm package or batch file (log on/group policy is out), is there any way to do it? I've been looking through the registry but can't find it, searching on a stack and the like but I just can't find it.
 
Associate
Joined
4 Feb 2011
Posts
580
Location
Halifax
Not sure if this is what you're looking for but create a .reg file with the following:

language.reg
Code:
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\International]
"AcceptLanguage"="en-US,en-GB;q=0.5"

Add the languages separated by a comma, ending with a semicolon. Not sure what q=0.5 does.

If you want to run it from a batch file, just do

language.bat
Code:
regedit /S language.reg

Source
 
Back
Top Bottom