3

I have a working windows deployment server set up on 2008 R2 which can image machines successfully with en-GB images of Windows 7 SP1.

However when I boot into the Install.WIM the Images are all listed as en-US. How do I get them to be listed as en-GB?

enter image description here

Christopher Edwards
  • 718
  • 1
  • 8
  • 19

2 Answers2

5

The language value is actually coded into each .wim file. it defaults with a new wim to en-US.

You can use the dism tool in waik to set the language value on the wim image. Specifically the /Set-UILang switch.

Check out the following documentation page for more information:

http://technet.microsoft.com/en-us/library/dd744360(WS.10).aspx

Nate
  • 3,378
  • 15
  • 21
0

I always deploy images in attend mode, using an unattend file with the image built in WAIK. Within the unattend there is a place to set location and language, as it would with an regular install. So from my experience it doesn't matter what the image is listed as on the image selection.

For example I use: For Timezone:

    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <TimeZone>E. Australia Standard Time</TimeZone>
        </component>
</settings>

You can find all the various timezone formats here: http://technet.microsoft.com/en-us/library/cc749073%28WS.10%29.aspx

For locale and language:

<settings pass="oobeSystem">
    <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <InputLocale>en-au</InputLocale>
        <SystemLocale>en-au</SystemLocale>
        <UILanguage>en-au</UILanguage>
        <UILanguageFallback></UILanguageFallback>
        <UserLocale>en-au</UserLocale>
    </component>
chr
  • 112
  • 1
  • 2
  • 10