additional languages
Hi,
anyone an idea how to add additional languages to windows 10 as a post installation task in a scripted installation on K2000 ?
tx
2 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
chucksteel
7 years ago
If you are referring to foreign language keyboards, yes, this is possible. You need to import the required registry keys into the default user profile hive. Here is the script that we use:
reg load HKU\Def c:\users\default\ntuser.dat
reg import "international keyboards.reg"
reg unload HKU\Def
I have a copy of the registry file on my GitHub page:
Place the script and the registry file in a zip, upload to the K2000 as an application and run the script as the parameter.
Posted by:
torstenspitz
7 years ago
You can add language packs in a mid-level task with DISM
Create a batch file with
mkdir C:\Scratch
start /wait X:\windows\system32\dism.exe /ScratchDir:C:\Scratch /Image:C:\ /Add-Package /Packagepath:.
rmdir C:\Scratch
and zip that together with all language packs (and Features on demand if needed) and attach it to a mid-level task where you call the script task.
Comments:
-
Can you please be more specific on the command? Am I supposed to ad something in the the "/scratchdir"? Am I only to include the path for the "Packagepath" - meritmedit 6 years ago
Check on Google if there is a way, with a BAT file or something.... and it should be possible via Windows post install task.
FYI, I am not sure of those language packs can be obtained for free or without EULA issues. - Channeler 7 years ago