Jump to content

Recommended Posts

Posted

I'm new to MDT and presently have just uploaded the base Windows 10 LTSB WIM file and worked out how to use WDS to deploy it out on test Windows 10 PC's.

 

Our languages department require the Russian language to be installed so they can type in Russian, on Windows 7 I created a shortcut so they could access "Region and Language"

 

Is it possible to add Russian language support to my deployment without creating a custom image?

Posted
Which part specifically?

 

I think it's OK - I was expecting to see the tick box to include Russian earlier in the sequence than it actually appears.

 

Just doing a test image now...

Posted
I think it's OK - I was expecting to see the tick box to include Russian earlier in the sequence than it actually appears.

 

Just doing a test image now...

 

FAIL :(

 

PC imaged and I've logged in and in Control Panel -> Clock, Language and Region -> Language : it only lists English (United Kingdom)

 

Could it be something in my customsettings.ini which looks like this:

 

[settings]

Priority=Default

Properties=MyCustomProperty

 

[Default]

OSInstall=Y

SkipCapture=NO

SkipAdminPassword=YES

SkipProductKey=YES

SkipComputerBackup=NO

SkipBitLocker=NO

SkipTimeZone=YES

TimeZoneName=GMT Standard Time

SkipUserData=YES

SkipLocaleSelection=YES

UILanguage=en-GB

InputLocale=en-GB

SystemLocale=en-GB

UserLocale=en-GB

KeyboardLocale=en-GB

SkipBitLocker=YES

 

 

 

My bootstrap.ini looks like this:

 

[settings]

Priority=Default

 

[Default]

SkipBDDWelcome=YES

DeployRoot=\\FP6\DeploymentShare$

UserID=admin

UserDomain=curriculum.local

UserPassword=xxxxxx

KeyboardLocalePE=0809:00000809

KeyboardLocale=en-GB;0809:00000809

Posted

I think I've got a solution to this.

 

I scrapped trying to add the language to the PC's and went back to how I have it working in Windows 7.

 

I created a shortcut to the control panel item Language and placed this on the students desktop.

 

I then amended my students lockdown policy :

 

User Configuration -> Policies -> Admistritive Templates -> Control Panel -> Policy -> Show only specified Control Panel items - UserLanguagesCpl.dll,-1

 

The students who require it can then add it as required.

  • 2 weeks later...
Posted (edited)
Could it be something in my customsettings.ini which looks like this:

Your customsettings.ini file is missing the LanguagePacks line. Replace the GUID shown below for LanguagePacks001 with the GUID for your Russian language pack (as mentioned in the article linked in post #2).

 

Each of the imported Language Packs have been given an unique ID, also known as GUID. To locate the GUID of each Language Pack, either expand the columns to show the GUID, or open up the Properties of each Language Pack, to give you the ability to copy the GUID.

 

By the way, SkipBitLocker is listed twice with contradictory values. :)

 

[settings]
Priority=Default
Properties=MyCustomProperty

[Default]
OSInstall=Y
SkipCapture=NO
SkipAdminPassword=YES
SkipProductKey=YES
SkipComputerBackup=NO
[color="#800080"]SkipBitLocker=NO[/color]
SkipTimeZone=YES
TimeZoneName=GMT Standard Time
SkipUserData=YES
SkipLocaleSelection=YES
UILanguage=en-GB
InputLocale=en-GB
SystemLocale=en-GB
UserLocale=en-GB
KeyboardLocale=en-GB 
[color="#800080"]SkipBitLocker=YES[/color]

[color="#FF0000"]LanguagePacks001=[/color][color="#4B0082"]{3af4e3ce-8122-41a2-9cf9-892145521660}[/color]

 

You may find these links useful too...

 

https://scriptimus.wordpress.com/2011/06/23/mdt-2010-sample-customsettings-ini-for-fully-automated-deployments

https://mdtguy.wordpress.com/2013/07/12/mdt-customsettings-ini-tips-tricks

http://trekker.net/archives/create-a-mostly-automated-reference-image-in-mdt-part-3

Edited by Arthur
  • Thanks 1
Posted
My bootstrap.ini looks like this:

en-GB is listed twice for KeyboardLocale since 0809:00000809 is the hexadecimal code for en-GB.

 

[settings]
Priority=Default

[Default]
SkipBDDWelcome=YES
DeployRoot=\\FP6\DeploymentShare$
UserID=admin
UserDomain=curriculum.local
UserPassword=xxxxxx
KeyboardLocalePE=0809:00000809
KeyboardLocale=[color="#FF0000"]en-GB;0809:00000809[/color]

 

As you are adding a Russian language pack you could try changing it to...

 

KeyboardLocale=0809:00000809;0419:00000419

 

or

 

KeyboardLocale=en-GB;ru-RU

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...