Jump to content

Recommended Posts

Posted

Just a quick one. SCCM is pretty much set up and working here save for one thing. Any OSD seems to set the Keyboard and Date settings to US.

 

Is there a way to set this to UK either on the task sequence during OSD or via group policy afterwards?

Posted

You need to create a unattended answer XML file with those settings in it, specifically in the Specialize phase. Put it into a folder in a file share, create a package with it in and then open your task sequence, go to Apply Operating System and check "Use an unattended answer file" box. Choose the package you just created and type in the file name of the XML file inside it. For reference, this is the XML file I use for Windows 7 x64:

 


   
       
           en-GB
           en-GB
           en-US
           
           en-GB
       
       
           true
       
   
   
       
           
               true
               c:\windows\system32\OEMLogo.bmp
               Luton Sixth Form College
               08:30 to 16:30 Weekdays
               Please call 2555 internally and XXXXX XXXXXX externally
               http://www.lutonsfc.ac.uk
           
           Luton Sixth Form College
           The Principal
           false
       
   
   

 

You can probably adapt it to suit you, not that there's much adaptation needed!

Posted

We had a problem with this also but have now got it sorted doing the following.

 

First i had to create an unattend.xml file this is my x64 one, if you are doing it for x86 replace processorArchitecture="amd64" with processorArchitecture="x86". Also you will need to change wim://sccm-001/sms_twr/osd/boot/x64/boot.twr00005.wim to point to your boot wim file.

 



   
       
           %OSDInputLocale%
           %OSDSystemLocale%
           %OSDUILanguage%
           %OSDUILanguageFallback%
           %OSDUserLocale%
       
   
   

 

Next I had to create a package with no program details just pointing to the folder containing the xml file. With the package created it needs to be added to the task sequence in the 'Apply Operating System' settings page. See below

 

unattend.png

 

Thats the task sequence all sorted the variables in the unatted.xml will now need to be created. To create these I went the collection that the task sequence was deployed to and opened the properties window. With the properties window open i created the variables shown below.

 

sccmvariables.png

 

let me know if this doesn't work.

Posted
That should work but why go to the extra trouble of creating task sequence variables unless you have machines running different languages inside your school?
Posted
That should work but why go to the extra trouble of creating task sequence variables unless you have machines running different languages inside your school?

 

We ended up getting a load of US Keyboards from a company when we bought the computers so its easier to just change between US and UK

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...