Jump to content

TobiasOverdijk

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Posts posted by TobiasOverdijk

  1. Input locale is invalid.

     

    <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>0409:00000409</InputLocale>            <SystemLocale>en-us</SystemLocale>            <UILanguage>en-us</UILanguage>            <UserLocale>en-US</UserLocale>        </component>

    Hi, thanks for your response.

    I already tried en-US before, but did not work.

    I discovered that I didn't add the xml to install, so it only took the boot part.

    It works now :)

  2. [RESOLVED]

     

    Hello,

    My name is Tobias, and for a project I am trying to create a fully automated unattended installation of Windows Server 2008.

    So far so good, I came to the point where server 2008 starts installing, but now I get stuck at the following window, followed by the productkey window:

     

    foto1.jpg

     

    Here is my xml (answer) file.

     

    <?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend">    <settings pass="windowsPE">        <component name="Microsoft-Windows-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">            <DiskConfiguration>                <Disk wcm:action="add">                    <CreatePartitions>                        <CreatePartition wcm:action="add">                            <Extend>true</Extend>                            <Order>1</Order>                            <Type>Primary</Type>                        </CreatePartition>                    </CreatePartitions>                    <ModifyPartitions>                        <ModifyPartition wcm:action="add">                            <Active>true</Active>                            <Extend>false</Extend>                            <Format>NTFS</Format>                            <Label>System</Label>                            <Letter>C</Letter>                            <Order>1</Order>                            <PartitionID>1</PartitionID>                        </ModifyPartition>                    </ModifyPartitions>                    <DiskID>0</DiskID>                    <WillWipeDisk>true</WillWipeDisk>                </Disk>            </DiskConfiguration>            <WindowsDeploymentServices>                <Login>                    <Credentials>                        <Password>********</Password>                        <Username>**************</Username>                        <Domain>***********</Domain>                    </Credentials>                </Login>                <ImageSelection>                    <InstallImage>                        <Filename>install-(2).wim</Filename>                        <ImageName>server2008image</ImageName>                        <ImageGroup>Server2008</ImageGroup>                    </InstallImage>                    <InstallTo>                        <DiskID>0</DiskID>                        <PartitionID>1</PartitionID>                    </InstallTo>                </ImageSelection>            </WindowsDeploymentServices>        </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>                <WillShowUI>Never</WillShowUI>            </SetupUILanguage>            <InputLocale>0x00020409</InputLocale>            <SystemLocale>en-us</SystemLocale>            <UILanguage>en-us</UILanguage>            <UILanguageFallback>en-us</UILanguageFallback>            <UserLocale>en-us</UserLocale>        </component>    </settings>    <settings pass="specialize">        <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">            <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey>            <TimeZone>W. Europe Standard Time</TimeZone>            <ComputerName>test</ComputerName>        </component>    </settings>    <settings pass="oobeSystem">        <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>en-US</InputLocale>            <SystemLocale>en-US</SystemLocale>            <UILanguage>en-US</UILanguage>            <UILanguageFallback>en-US</UILanguageFallback>            <UserLocale>en-US</UserLocale>        </component>    </settings>    <cpi:offlineImage cpi:source="wim:d:/iso/en_windows_server_2008_r2_standard_enterprise_datacenter_web_x64_dvd_x15-50365/sources/install.wim#Windows Server 2008 R2 SERVERSTANDARD" xmlns:cpi="urn:schemas-microsoft-com:cpi" /></unattend>
×
×
  • Create New...