You haven't followed any of the directions provided in previous link.
If you did try to add those WinPE packages, it would be obvious that NTLite currently has a bug where it ignores the language OC's, and won't integrate them – but it will add the other required Setup files. Since NTLite appears to be ignoring the LP CAB's, you have to bypass that step by adding them by hand.
1.
Download and install WinPE ADK Add-on's (26100.2454).
If you have an older version of the PE Add-on's installed, adkwinpesetup will ask you to uninstall the old version before proceeding.
2. Extract the Windows ISO to a local folder, using 7-Zip.
3. From NTLite, load boot.wim (index 2).
4. For each language, add the local
WinPE-Setup_* and
WinPE-Setup-Client_* packages from folder "
C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs".
5. Apply changes.
6. Manually mount the boot.wim:
Code:
mkdir C:\Mount
Dism /mount-image /imagefile:\path\to\folder\boot.wim /index:2 /mountdir:C:\Mount
7. Manually add each of the PE LP's:
Code:
Dism /image:C:\mount /add-package /packagepath:"\path\to\da-dk\lp.cab"
Dism /image:C:\mount /add-package /packagepath:"\path\to\de-de\lp.cab"
Dism /image:C:\mount /add-package /packagepath:"\path\to\es-es\lp.cab"
Dism /image:C:\mount /add-package /packagepath:"\path\to\fr-fr\lp.cab"
8. Edit the "C:\Mount\sources\lang.ini" file:
Code:
[Available UI Languages]
en-us = 3
da-dk = 0
de-de = 0
es-es = 0
fr-fr = 0
it-it = 0
nb-no = 0
nl-nl = 0
[Fallback Languages]
en-us = en-us
9. Commit the changes to boot.wim:
Code:
Dism /unmount-image /mountdir:C:\Mount /commit
10. From NTLite, create an ISO from the ISO folder.
All that has been done is Setup itself will be displayed in a different language. This has no impact on the actual install image, which be customized separately with a set of Windows (not WinPE) LP's.
