We deploy our Laptops with a Windows 11 24h2 (Enterprise) Image with German as the default language. We now want to offer English as a second option. We inject the language pack in the task sequence and set following settings :
Dism /image:C: /Set-UILang:en-US
Dism /image:C: /Set-SysUILang:en-US
Dism /image:C: /Set-SysLocale:en-US
Dism /image:C: /Set-UserLocale:en-US
and / or
Set-WinUILanguageOverride -Language en-US
Set-WinUserLanguageList en-US -Force
Set-WinSystemLocale en-US
also tried every RegKey in "HKLM:\System\CurrentControlSet\Control\Nls\Language"
about 90% is in English but the Settings app and some other texts are still in German...
How can we fix this? ty