Jump to content

InputLocale other than SystemLocale & UserLocale


Recommended Posts

hi.

1. i want windows setup not to show langage selection options and the very beginning, what options should i set in autounattend.xml? in which section - specialize or windowsPE?

2. i want "ru-RU" UserLocale & SystemLocale

3. i want english layout by default so i gues i should set InoutLocale to 0409:00000409, am i right?

4. should i set UIFallback ? Or is it en-US by default?

Link to comment
Share on other sites


All In One Place

SetupUILanguage defines the language to use in Windows Setup and Windows Deployment Services.

InputLocale specifies the input language and method for input devices, such as the keyboard layout. The input locale (also called input language) is a per-process setting that describes an input language (for example, Greek) and an input method (for example, the keyboard).

UserLocale specifies the per-user settings used for formatting dates, times, currency, and numbers in a Windows installation.

SystemLocale specifies the default language to use for non-Unicode programs.

UILanguage specifies the default system language to display user interface items (such as menus, dialog boxes, and help files).

UILanguageFallback specifies the language to use for resources that are not localized for the default system user interface (UILanguage setting).

So to be more accurate for me this will be the things needed for Setup and this is done in windowsPE

		   <SetupUILanguage>
<UILanguage>en-US</UILanguage>
</SetupUILanguage>
<InputLocale>0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>

All these are explained in the Unattend.chm and you can get the latest updated User's Guide 4/2/2007

http://www.msfn.org/board/index.php?showtopic=95816

Edited by maxXPsoft
Link to comment
Share on other sites

thanks.

that worked for me:

<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SetupUILanguage>
<UILanguage>ru-RU</UILanguage>
</SetupUILanguage>
<InputLocale>en-US</InputLocale>
<SystemLocale>ru-RU</SystemLocale>
<UILanguage>ru-RU</UILanguage>
<UserLocale>ru-RU</UserLocale>
</component>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...