Share via

How to removeKazakh interface localisation pack installed by default

Tommy Gilardi 0 Reputation points
2026-04-04T23:22:12.5133333+00:00

Hi,

I've restaured my MSI laptop using the MSI recovery tool and the built in partition (windows 11 home), set up my localisation (France) and my languages (English-american and french).
Let windows Update run to update everything (21H2)
All went well, i was removing the apps i didn't want in the apps manager part of the setting and i noticed at the very bottom something in a writting i couldn't read.
Use my phone translator and it says "kazakh localized interface pack microsoft" but i've never selected this language to be installed.
Is there a way to remove this? All it offers me when i click on the three dots is to manage it and advanced option.
But when i try to manage it, it doesn't show anywhere in the language&region page.
I tried removing the language pack, changing the system locale, country region...The thing is still there.

Not that it's bothersome per se, but i don't like not knowing why something is there ^^'

Windows for home | Windows 11 | Settings
0 comments No comments

2 answers

Sort by: Most helpful
  1. Thomas4-N 13,060 Reputation points Microsoft External Staff Moderator
    2026-04-05T09:49:54.1366667+00:00

    Hello Tommy Gilardi,

    It looks like the Kazakh Language Interface Pack was bundled by MSI during the OEM recovery.

    The practical removal path is through PowerShell. Open PowerShell as Administrator and run:

    $list = Get-WinUserLanguageList
    $list | Where-Object {$_.LanguageTag -eq 'kk-KZ'} | ForEach-Object {$list.Remove($_)}
    Set-WinUserLanguageList $list -Force
    

    If that doesn't fully remove it from Apps & features, you can follow up with DISM:

    dism /Online /Remove-Language /Language:kk-KZ
    

    A restart after either command is recommended. Let me know how it goes,


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".  

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 


  2. Q&A Assist
    2026-04-04T23:22:26.79+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Kazakh is available in Windows 11 as a Language Interface Pack (LIP) that uses English (United States) as its base language. On some OEM images (like MSI factory images), additional LIPs such as Kazakh can be preinstalled even if they are not visible in the normal Language & region list.

    From the provided information, only supported and documented actions are:

    1. Language packs and LIPs can be added or removed only through supported mechanisms (Settings or imaging tools).
    2. For end users, the supported way to manage languages in Windows 11 is:
      • Select Start > Settings > Time & language > Language & region.
      • Under Preferred languages, add or remove languages, and in Install language features choose which components to install.
    3. Kazakh is listed as a Windows 11 language that requires English (United States) as the base language, and as a LIP (kk-KZ) with base language en-US.

    If the Kazakh interface pack does not appear under Language & region and only shows as an installed component in Apps, and there is no Uninstall option (only Manage / Advanced options), then removal is not exposed through the supported end‑user UI in the documentation provided. In that case, the pack is effectively part of the OEM image and can be left as-is; it does not affect the system if not selected as a display language.

    To ensure only desired display languages are active, verify in Settings > Time & language > Language & region that only French and English (United States) are set as:

    • Windows display language
    • Preferred languages

    Kazakh will not be used unless explicitly chosen as a display language.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.