我有一个工作的Windows部署服务器在2008 R2上设置,可以用Windows 7 SP1的en-GB映像成功映像机器。
但是,当我启动到Install.WIM图像都列为en-US。 我如何让他们被列为en-GB?

语言值实际上被编码到每个.wim文件中。 它默认使用新的wim来en-US 。
您可以在waik中使用dism工具在wim图像上设置语言值。 具体来说就是/Set-UILang开关。
查看以下文档页面以获取更多信息:
http://technet.microsoft.com/en-us/library/dd744360(WS.10).aspx
我总是部署图像参加模式,使用无人参与的文件与图像内置在WAIK。 在无人值守的地方,有一个地方可以设置地点和语言,就像普通的安装一样。 所以根据我的经验,图像select上列出的图像并不重要。
例如,我使用:对于时区:
<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>
你可以在这里find所有不同的时区格式: http : //technet.microsoft.com/en-us/library/cc749073%28WS.10%29.aspx
对于语言环境和语言:
<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>