Microsoft-windows-languagefeatures-basic-zh-cn-package 31bf3856ad364e35 Amd64 .cab May 2026
$dismArgs = @('/English', '/Quiet', '/LogLevel', '1')
<component name="Microsoft-Windows-International-Core-WinPE" ...> <SetupUILanguage> <UILanguage>zh-CN</UILanguage> </SetupUILanguage> <UILanguage>zh-CN</UILanguage> </component> Then during deployment, the .cab would be applied using: Check DISM log
if ($packages -match "Install State : Installed") Write-Host "Language feature already installed. Skipping." exit 0 $addArgs = $dismArgs + @('/Add-Package', "/PackagePath:$CabPath") Write-Host "Adding language feature CAB..." & dism $addArgs applies to online OS )
function Test-LanguageFeatureCab param([string]$CabPath) $cabInfo = & dism /Get-PackageInfo /PackagePath:$CabPath /English $matchesArch = $cabInfo -match "amd64" $matchesPublisher = $cabInfo -match "31bf3856ad364e35" $isZhCn = $cabInfo -match "zh-cn" return ($matchesArch -and $matchesPublisher -and $isZhCn) If you’re building an answer file (autounattend.xml), the feature enables adding: $dismArgs = @('/English'
It sounds like you’re referring to a specific Windows cumulative or language feature CAB file — likely used for offline servicing, adding language capabilities, or updating language features in a Windows image (DISM).
if ($LASTEXITCODE -ne 0) Write-Error "DISM failed. Check DISM log." exit $LASTEXITCODE
[string]$ImagePath # If omitted, applies to online OS )

Показать адрес на карте