/build/static/layout/Breadcrumb_cap_w.png

Change UI Display Language for Win7 Ent

I am deploying a scripted installation from KACE K2000 and I’m using a Swedish ISO for the install.

I have a working post task that installs a Norwegian language pack and another task that remove this registry key to set the Norwegian language pack as standard for both the welcome screen and for the users that log in to the computer, “reg delete hklm\system\currentcontrolset\control\mui\uilanguages\sv-SE /f”

 

This works fine for the Norwegian install, but now I would like to do an English install so I replace the task that installs the Norwegian language pack with the English pack, and after that I run the reg delete task so the computer should use the other language pack that is installed on the computer. But for some reason this doesn’t work for the English install. The computer just shows a black screen with a mouse pointer, when I restart the computer it comes in to repair mode and fails the repair.

So for some reason this method works just fine with the Norwegian setup but not for the English one. So I wonder if anyone can help me with a script I can run to change the UI display language for all users that log in and on the Welcome screen to English?


0 Comments   [ + ] Show comments

Answers (2)

Answer Summary:
Posted by: rileyz 8 years ago
Red Belt
0

Have a look at this post.

https://www.autoitscript.com/forum/topic/118706-fastest-way-command-line-to-change-system-locale/

 

 

Its best not to hack the registry for the Lang UI, I've had issues in the past when I've done this myself. I would recommend you do this the MS way, or at least in a semi supported way.

When changing Lang UI, there are a lot of changes in the registry, some of them are different for each language. I found that changing to English from Russian changes different registry keys (more changes), compared to English to French (less changes).

 

Posted by: Emil_O 8 years ago
White Belt
0

Top Answer

Hi rileyz,

 

I had started on the same solution you gave me but I was missing some settings in my xml, but now it works fine, thank you.

My solution looks like this, I have three files:

Setup.vbs:
CreateObject("Wscript.Shell").Run "setup.bat", 0, True

Setup.bat:
C:\Windows\System32\control intl.cpl,, /f:"enus.xml"

enus.xml:
<gs:GlobalizationServices xmlns:gs="urn:longhornGlobalizationUnattend">
<gs:UserList>
<gs:User UserID="Current" CopySettingsToDefaultUserAcct="true" CopySettingsToSystemAcct="true"/>
</gs:UserList>
<gs:MUILanguagePreferences>   
<gs:MUILanguage Value="en-US"/>    
<gs:MUIFallback Value="se-SV"/>   
</gs:MUILanguagePreferences>
<!-- system locale --><gs:SystemLocale Name="en-US" />
</gs:GlobalizationServices>

 

I first launched it without the VB script but then the task fails for some reason, but if I start it through the VB script it works fine.


Comments:
  • Good to hear you got it going. - rileyz 8 years ago

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ