K2000 Language/regional Settings
Hi everybody,
We are using Kace 2000 for Systems deployment. Everything is working terrific besides the regional/language settings. We deploy Windows 7 64 English via scripted installation. Is it possible to set the systemlanguage to English (that all software is installed in English) and set every other language/regional setting like keyboard layout, Date and time format ... to Luxembourg?
The Installation has to be completely unattend.
I hope you can help me out, maybe with an example
0 Comments
[ + ] Show comments
Answers (1)
Answer Summary:
Please log in to answer
Posted by:
mpace
11 years ago
This might work but I haven't tested it:
<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<UILanguage>fr-lu</UILanguage>
<SetupUILanguage>
<UILanguage>fr-lu</UILanguage>
</SetupUILanguage>
<InputLocale>fr-lu</InputLocale>
<SystemLocale>en-us</SystemLocale>
<UserLocale>fr-lu</UserLocale>
</component>
Comments:
-
-
Hi mpace
my solution was almost like you mentioned:
<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<UILanguage>en-us</UILanguage>
<SetupUILanguage>
<UILanguage>en-us</UILanguage>
</SetupUILanguage>
<InputLocale>lb-LU</InputLocale>
<SystemLocale>en-us</SystemLocale>
<UserLocale>lb-LU</UserLocale>
</component>
Thanks for your help - marczandboer 11 years ago