View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006291 | WINIOT8MP | General | public | 2024-06-14 08:19 | 2024-09-17 10:31 |
Reporter | roesner | Assigned To | |||
Priority | normal | Severity | feature | Reproducibility | always |
Status | assigned | Resolution | open | ||
Product Version | V1.0 | ||||
Target Version | V1.2 | ||||
Summary | 0006291: Add German system language and keyboard layout | ||||
Description | The 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 Information | Below 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 | |||||