Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED Remove English US LP on England Build

  • Thread starter Thread starter Taha
  • Start date Start date
  • Replies Replies 1
  • Views Views 3K
Status
Not open for further replies.

Taha

New Member
Messages
3
Reaction score
0
Points
1
Hello,
Client asked to remove English US LP completely and make English GB as default.
What method can be used?
Using SCCM OSD
 
Changed xml and it worked

<gs:GlobalizationServices xmlns:gs="urn:longhornGlobalizationUnattend">
- <!-- user list
-->
- <gs:UserList>
<gs:User UserID="Current" CopySettingsToDefaultUserAcct="true" CopySettingsToSystemAcct="true" />
</gs:UserList>
- <!-- GeoID
-->
- <gs:LocationPreferences>
<gs:GeoID Value="242" />
</gs:LocationPreferences>
- <!-- UI Language Prefernces
-->
- <gs:MUILanguagePreferences>
<gs:MUILanguage Value="en-GB" />
<gs:MUIFallback Value="en-US" />
</gs:MUILanguagePreferences>
- <!-- system locale
-->
<gs:SystemLocale Name="en-GB" />
- <!-- input preferences
-->
- <gs:InputPreferences>
<gs:InputLanguageID Action="add" ID="0809:00000809" Default="true" />
<gs:InputLanguageID Action="remove" ID="0409:00000409" />
</gs:InputPreferences>
- <!-- user locale
-->
- <gs:UserLocale>
<gs:Locale Name="en-GB" SetAsCurrent="true" ResetAllSettings="true" />
</gs:UserLocale>
</gs:GlobalizationServices>
 
Status
Not open for further replies.
Back
Top