This specifies the processor architecture. amd64 refers to 64-bit x86-compatible processors (both Intel and AMD). You might also see x86 (32-bit), arm64 (64-bit ARM), or wow64 (Windows-on-Windows 64-bit). A package for amd64 will not install on a 32-bit Windows system.
Microsoft distinguishes between several layers of language support:
The Basic package (the one in focus) includes:
Without this package, a Windows machine can display Chinese characters (if fonts are present) but cannot:
Let’s parse the naming convention (which follows a standard Windows Update package naming schema): This specifies the processor architecture
| Component | Meaning |
|-----------|---------|
| microsoft-windows-languagefeatures-basic-zh-cn-package | The package provides Basic language features for Chinese (People's Republic of China) – Simplified Chinese. |
| 31bf3856ad364e35 | The public key token for Microsoft Windows. It validates the authenticity of the package. |
| amd64 | The package is built for 64-bit (x64) architectures. |
| .cab | A Cabinet file – a compressed archive used by Windows Setup, DISM, and servicing tools. |
Note: The
basicdesignation means it supports core input, display, and locale formatting (dates, numbers, currency) but may not include speech, handwriting, or full Optical Character Recognition (OCR). For full features, Windows offers "Basic", "OCR", "Handwriting", and "Text-to-Speech" language component packs.
The globalization of the Windows Operating System (OS) relies on a modular architecture that separates the core OS binaries from user interface (UI) resources. The file Microsoft-Windows-LanguageFeatures-Basic-zh-cn-Package_31bf3856ad364e35_amd64.cab represents the core component for Simplified Chinese (zh-CN) localization on 64-bit systems.
Unlike the legacy "Language Interface Packs" (LIPs) or full "Local Experience Packs" (LXPs), the LanguageFeatures-Basic package is the prerequisite component that enables the OS to render Chinese characters, handle input method editors (IMEs), and support system locale operations without converting the entire Windows UI to Chinese. Understanding the deployment of this .cab is critical for system administrators managing multi-language images using MDT (Microsoft Deployment Toolkit) or SCCM (Microsoft Endpoint Configuration Manager). The Basic package (the one in focus) includes:
The file microsoft-windows-languagefeatures-basic-zh-cn-package~31bf3856ad364e35~amd64~~.cab is a core Windows component for adding Simplified Chinese (zh-CN) language support to 64-bit Windows images in enterprise or offline scenarios. It is not a user application but a system servicing package deployed via DISM. Understanding its structure and usage allows system administrators to build localized Windows environments efficiently.
Disclaimer: This article is for educational and informational use. Always test language pack deployment in a non-production environment first. Microsoft package names may change slightly with OS versions; verify exact filename for your Windows build.
microsoft-windows-languagefeatures-basic-zh-cn-package 31bf3856ad364e35 amd64 .cab
To fully enable Chinese (Simplified) experience, you likely need multiple packages: Without this package, a Windows machine can display
| Package Type | Package Name Example | Required? | |--------------|----------------------|------------| | Basic (this one) | ...languagefeatures-basic-zh-cn... | Yes | | Fonts | Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package | Recommended | | OCR | ...languagefeatures-ocr-zh-cn... | Optional (scanned docs) | | Handwriting | ...languagefeatures-handwriting-zh-cn... | Optional (pen input) | | Text-to-Speech | ...languagefeatures-tts-zh-cn... | Optional (Narrator) | | Full Language Pack | ...languagepack-zh-cn... | For fully translated UI |
You can query all available language features in an image:
dism /online /get-capabilities | findstr "zh-cn"
The most common professional reason to encounter this .cab file is during offline servicing of a Windows image (WIM or VHDX file). For example, you have a base English Windows 11 image, but you need to deploy it to 1000 computers in Shanghai. Instead of installing Chinese features post-deployment (wasting time and bandwidth), you inject them offline.
Command example:
DISM /Mount-Image /ImageFile:C:\myimage.wim /Index:1 /MountDir:C:\mount
DISM /Image:C:\mount /Add-Package /PackagePath:C:\packages\microsoft-windows-languagefeatures-basic-zh-cn-package~31bf3856ad364e35~amd64~~.cab
DISM /Unmount-Image /MountDir:C:\mount /Commit
© 2026 - Mark Downie, All Rights Reserved.
Powered by Dasblog-Core commit 5d5367