Jump to content


Photo

Add en-GB Language and KB to Autounattend


  • Please log in to reply
2 replies to this topic

#1 ElmerBeFuddled

ElmerBeFuddled

    Advanced Member

  • Members
  • PipPipPip
  • 72 posts
  • Location:Durham. UK
  • OS:Windows 7 x64

Posted 22 March 2012 - 06:03 PM

Hi, I'd like to add my User choice en-GB Language and en-GB Keyboard to the Autounattend.xml with W7T and skip this UI screen during install.

Is this at all possible, and if so how? I'll admit I haven't a clue, and what I've seen so far is confusing me! So any help much appreciated.

This is how it stands at the moment:

<!--?xml version="1.0" encoding="utf-8"?-->
<!--Created by Windows 7 Toolkit v1.3.0.91-->
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass=
"windowsPE">
<component name=
"Microsoft-Windows-Setup" processorarchitecture="x86" publickeytoken="31bf3856ad364e35" language="neutral" versionscope="nonSxS" xmlns:wcm="http://schemas.micro...fig/2002/State" xmlns:xsi="http://www.w3.org/20...chema-instance">
<userdata>
<accepteula>
true</accepteula>
</userdata>
</component>
<component name=
"Microsoft-Windows-Setup" processorarchitecture="amd64" publickeytoken="31bf3856ad364e35" language="neutral" versionscope="nonSxS" xmlns:wcm="http://schemas.micro...fig/2002/State" xmlns:xsi="http://www.w3.org/20...chema-instance">
<userdata>
<accepteula>
true</accepteula>
</userdata>
</component>
</settings>
<settings pass=
"oobeSystem">
<component name=
"Microsoft-Windows-Shell-Setup" processorarchitecture="x86" publickeytoken="31bf3856ad364e35" language="neutral" versionscope="nonSxS" xmlns:wcm="http://schemas.micro...fig/2002/State" xmlns:xsi="http://www.w3.org/20...chema-instance">
<oobe>
<hideeulapage>
true</hideeulapage>
<hidewirelesssetupinoobe>
true</hidewirelesssetupinoobe>
<networklocation>
Home</networklocation>
<protectyourpc>
3</protectyourpc>
</oobe>
<timezone>
GMT Standard Time</timezone>
</component>
<component name=
"Microsoft-Windows-Shell-Setup" processorarchitecture="amd64" publickeytoken="31bf3856ad364e35" language="neutral" versionscope="nonSxS" xmlns:wcm="http://schemas.micro...fig/2002/State" xmlns:xsi="http://www.w3.org/20...chema-instance">
<oobe>
<hideeulapage>
true</hideeulapage>
<hidewirelesssetupinoobe>
true</hidewirelesssetupinoobe>
<networklocation>
Home</networklocation>
<protectyourpc>
3</protectyourpc>
</oobe>
<timezone>
GMT Standard Time</timezone>
</component>
</settings>
</unattend>


TIA for any help

Edited by ElmerBeFuddled, 23 March 2012 - 04:51 PM.


#2 ElmerBeFuddled

ElmerBeFuddled

    Advanced Member

  • Members
  • PipPipPip
  • 72 posts
  • Location:Durham. UK
  • OS:Windows 7 x64

Posted 25 March 2012 - 10:59 AM

I finally got this to work, after a few days of swearing, kicking the pc and spitting at my monitor! :ranting: :D
For anyone else who is going through this hell, these are the relevant parts that were needed:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
	<settings pass="windowsPE">
		<component name="Microsoft-Windows-International-Core-WinPE" 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">
			<SetupUILanguage>
				<UILanguage>en-US</UILanguage>
			</SetupUILanguage>
			<InputLocale>0809:00000809</InputLocale>
			<SystemLocale>en-GB</SystemLocale>
			<UILanguage>en-US</UILanguage>
			<UserLocale>en-GB</UserLocale>
		</component>
		<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
			<SetupUILanguage>
				<UILanguage>en-US</UILanguage>
			</SetupUILanguage>
			<InputLocale>0809:00000809</InputLocale>
			<SystemLocale>en-GB</SystemLocale>
			<UILanguage>en-US</UILanguage>
			<UserLocale>en-GB</UserLocale>
		</component>
	  </settings>
	<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>0809:00000809</InputLocale>
			<SystemLocale>en-GB</SystemLocale>
			<UILanguage>en-US</UILanguage>
			<UserLocale>en-GB</UserLocale>
		</component>
		<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" 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>0809:00000809</InputLocale>
			<SystemLocale>en-GB</SystemLocale>
			<UILanguage>en-US</UILanguage>
			<UserLocale>en-GB</UserLocale>
		</component>
		<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>GMT Standard Time</TimeZone>
		</component>
		<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" 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>GMT Standard Time</TimeZone>
		</component>
	</settings>
</unattend>



Now to learn how / if I can skip the "enter key / activate" screens regardless of the version being installed.

Edited by ElmerBeFuddled, 25 March 2012 - 11:02 AM.


#3 zozoiste

zozoiste

    Lurker

  • Members
  • Pip
  • 1 posts
  • OS:Windows 7 x64

Posted 30 August 2012 - 07:20 PM

same for french installs, the UI is built in fr-FR not fr-CA, so fr-CA will always popup the window


<SetupUILanguage>
<UILanguage>fr-FR</UILanguage>
<WillShowUI>Never</WillShowUI>
</SetupUILanguage>
<InputLocale>0c0c:00001009</InputLocale> (Français Canada - Français Canada)
<SystemLocale>fr-CA</SystemLocale>
<UILanguage>fr-FR</UILanguage>
<UserLocale>fr-CA</UserLocale>

took me a while also :P




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users