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

2 Answers 2

5
+50

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

3
  • Thanks nate, a colleague of mine is trying it out now, I'll award the bounty if it works! Commented Sep 5, 2011 at 13:14
  • Were you able to get it to work?
    – Nate
    Commented Sep 7, 2011 at 13:45
  • Unfortunately we didn't get to it but it sounds plausible so I have marked the question as accepted and the system seems to have given the bounty. I'll comment back when I know for sure. Commented Sep 10, 2011 at 0:43
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>

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .