I believe this is an issue with the international internet connection in Northern China. I found a way to install the Chinese typing pack offline.
https://learn.microsoft.com/zh-cn/answers/questions/4373505/*
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I recently performed a clean install of Windows 11 25H2 Enterprise Edition (English). When installing the Simplified Chinese Language Basics Typing Package, I keep getting the error message: "Sorry, we're having trouble installing this feature. You can try again later. Error code: 0x800F0950." I haven't been able to install it successfully on different computer models. I've tried using China Mobile, China Unicom, and China Telecom networks, and none of them can install the feature.
I believe this is an issue with the international internet connection in Northern China. I found a way to install the Chinese typing pack offline.
https://learn.microsoft.com/zh-cn/answers/questions/4373505/*
Install it manually by specifying the source. You will need the Features on Demand files to do this (download the ISO from the Microsoft volume licencing center.)
Add-WindowsCapability -Online -Name "Language.Basic~~~zh-CN~0.0.1.0" -Source "D:\FOD" -LimitAccess
And DISM with source:
Dism /Online /Add-Capability /CapabilityName:Language.Basic~~~zh-CN~0.0.1.0 /Source:D:\FOD /LimitAccess
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
1 deleted commentComments have been turned off. Learn more
Hi Duqiang He •
The error code 0x800F0950 usually means Windows can’t pull the required language pack files from Microsoft’s servers, often due to WSUS/group policy settings or leftover corrupted install files. The quickest workaround is to install the Simplified Chinese package using DISM or PowerShell directly, bypassing the Settings UI
DISM manually:
DISM /Online /Add-Capability /CapabilityName:Language.Basic~~~zh-CN~0.0.1.0
This forces Windows to fetch the Simplified Chinese typing package directly.
Check WSUS/Group Policy: If your machines are domain-joined, make sure UseWUServer is set to 0 under HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU. Then restart the Windows Update service.
Clean up residue files: If previous installs failed, run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth to clear corrupted components.
Some tips:
Always install language packs from Microsoft’s official servers, not older Windows 10 packages.
Test on a clean VM first to confirm the pack installs correctly before rolling out to multiple devices
If this explanation helps you get the language pack installed, please hit “accept answer” so we know the guidance worked for you.