View Issue Details

IDProjectCategoryView StatusLast Update
0006291WINIOT8MPGeneralpublic2024-09-17 10:31
Reporterroesner Assigned To 
PrioritynormalSeverityfeatureReproducibilityalways
Status assignedResolutionopen 
Product VersionV1.0 
Target VersionV1.2 
Summary0006291: Add German system language and keyboard layout
DescriptionThe operating system and keyboard language are currently set to English. Now a DISM command should be added to the make-winpe script so that the German language for the system and keyboard is also automatically installed, allowing the user to change the language in the Windows settings if necessary.
Additional InformationBelow is an example of how you can modify your script to include these steps:

# Define the paths to the language packs
GERMAN_LANGPACK_PATH="path\to\de-de\lp.cab"
GERMAN_FOD_PATH="path\to\de-de\fod.cab"
GERMAN_KEYBOARD_LAYOUT="path\to\de-de\keyboardlayout.cab"

# Mount the WinPE image
Dism /Mount-Wim /WimFile:C:\WinPE_amd64\media\sources\boot.wim /index:1 /MountDir:C:\WinPE_amd64\mount

# Add the German language pack to the image
Dism /Image:C:\WinPE_amd64\mount /Add-Package /PackagePath:$GERMAN_LANGPACK_PATH
Dism /Image:C:\WinPE_amd64\mount /Add-Package /PackagePath:$GERMAN_FOD_PATH
Dism /Image:C:\WinPE_amd64\mount /Add-Package /PackagePath:$GERMAN_KEYBOARD_LAYOUT

# Set the German language as default (optional, user can change later in settings)
Dism /Image:C:\WinPE_amd64\mount /Set-AllIntl:de-DE

# Set the default keyboard layout to German
Dism /Image:C:\WinPE_amd64\mount /Set-InputLocale:de-DE

# Commit the changes and unmount the image
Dism /Unmount-Wim /MountDir:C:\WinPE_amd64\mount /Commit
Forum Link
Found Driver Version
Fixed Driver Version

Activities

There are no notes attached to this issue.