Forum Discussion
DylanEdwards
Feb 25, 2025Steel Contributor
Why Windows 11 24H2 displaying mixed languages
Today I tried to change the language of the system from Portuguese to English, and everything became a mixture of the two languages (even after leaving only the English language installed). I searche...
MELERIX
Apr 09, 2026Brass Contributor
this is the real fix (even if the language is already mixed)...
open a PowerShell window in Admin mode, and then use the following command (this may take various minutes)...
$L='es-CL'; Install-Language $L -ErrorAction SilentlyContinueand after that use the following command...
$L='es-CL'; Set-WinUILanguageOverride $L; Set-WinSystemLocale $L; Set-Culture $L; Set-WinHomeLocation -GeoId 46; $U = New-WinUserLanguageList $L; Set-WinUserLanguageList $U -Force ; Copy-UserInternationalSettingsToSystem -WelcomeScreen $True -NewUser $True ; shutdown /r /t 0NOTE 1: es-CL is for Spanish (Chile), for other countries see here for references: https://learn.microsoft.com/dynamics365/business-central/dev-itpro/compliance/apptest-countries-and-translations#supported-languages
NOTE 2: GeoId 46 is for Chile in decimal, for other countries see here for references: https://learn.microsoft.com/windows/win32/intl/table-of-geographical-locations?redirectedfrom=MSDN