Jump to content

stuartluscombe

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

About stuartluscombe

Profile Information

  • OS
    Windows 7 x64

stuartluscombe's Achievements

0

Reputation

  1. This setup is being run from WDS using a wim from our volume licence copy of Windows 7 Enterprise x86. The language I need is en-GB, which from my understanding isn't downloadable as a separate language pack. It is accessible from SIM though in the Packages section of my wim but adding it into my autounattend doesn't seem to make any difference. <servicing> <package action="configure" permanence="permanent"> <assemblyIdentity name="Microsoft-Windows-LocalPack-GB-Package" version="6.1.7600.16385" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="" /> <selection name="LocalPack-GB" state="true" /> </package> </servicing> I'm obviously overlooking something somewhere but I can't figure out what as if I apply the same unattend actions to installing from a disc the whole thing completes fine except for naming the machine.
  2. I just tried that, putting en-GB in there and also removing it altogether and I'm still getting the same result. I'm still not having any luck with this, I've attached the setupact.log in the hope that someone can work this out... Thanks Stuart setupact.zip
  3. I just tried that, putting en-GB in there and also removing it altogether and I'm still getting the same result.
  4. I've been putting together a WDS setup for my department and I'm almost there except I keep getting locale/user/timezone prompts during the install of Windows 7. The main install finishes fine, then after updating settings/drivers etc. it reboots again and then the prompts are coming up. Despite trying all different combinations I can think of I still keep getting the prompts. I've also tried using DISM to change the locales in the wim file but they're still appearing. I've looked everywhere I can to find an answer to this but to no avail. Any help that people can give would be most appreciated as I've hit a brick wall... <?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86"> <WindowsDeploymentServices> <Login> <WillShowUI>OnError</WillShowUI> <Credentials> <Username>username</Username> <Domain>domain.local</Domain> <Password>password</Password> </Credentials> </Login> <ImageSelection> <WillShowUI>OnError</WillShowUI> <InstallImage> <ImageName>Windows 7 ENTERPRISE</ImageName> <ImageGroup>Windows 7 x86</ImageGroup> <Filename>Install.wim</Filename> </InstallImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>2</PartitionID> </InstallTo> </ImageSelection> </WindowsDeploymentServices> <DiskConfiguration> <Disk> <CreatePartitions> <CreatePartition> <Order>1</Order> <Size>200</Size> <Type>Primary</Type> </CreatePartition> <CreatePartition> <Extend>true</Extend> <Order>2</Order> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition> <Active>true</Active> <Format>NTFS</Format> <Label>System</Label> <Order>1</Order> <PartitionID>1</PartitionID> </ModifyPartition> <ModifyPartition> <Format>NTFS</Format> <Label>Windows</Label> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> </DiskConfiguration> <UserData> <AcceptEula>true</AcceptEula> <FullName>User</FullName> <Organization>Organisation</Organization> </UserData> <EnableFirewall>false</EnableFirewall> <EnableNetwork>true</EnableNetwork> </component> <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86"> <SetupUILanguage> <WillShowUI>OnError</WillShowUI> <UILanguage>en-US</UILanguage> </SetupUILanguage> <UILanguage>en-US</UILanguage> <InputLocale>0809:00000409</InputLocale> <SystemLocale>en-GB</SystemLocale> <UserLocale>en-GB</UserLocale> </component> </settings> <settings pass="oobeSystem"> <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> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> <UserAccounts> <AdministratorPassword> <Value>bgBtADQANgAxADkAOAAwAEEAZABtAGkAbgCpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>bQAzAGcQNAB0ADAAawB5ADAAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </Password> <Description>User</Description> <DisplayName>User</DisplayName> <Name>User</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> </component> <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> <UILanguage>en-US</UILanguage> <SystemLocale>en-GB</SystemLocale> <UserLocale>en-GB</UserLocale> <UILanguageFallback></UILanguageFallback> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-UnattendedJoin" 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"> <Identification> <Credentials> <Domain>domain.local</Domain> <Password>password</Password> <Username>username</Username> </Credentials> <JoinDomain>domain.local</JoinDomain> <MachineObjectOU>cn=Computers,dc=domain,dc=local</MachineObjectOU> </Identification> </component> </settings> <cpi:offlineImage cpi:source="wim://sysadmin/users/public/documents/windows%207%20x86/custom/sources/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /></unattend>
×
×
  • Create New...