Jump to content

ShadowHunter

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by ShadowHunter

  1. I've tried that and it doesn't work. I just goes into Select an operating system window. The whole code is:

    <?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">                            <Order>1</Order>                            <Type>Primary</Type>                        </CreatePartition>                    </CreatePartitions>                    <ModifyPartitions>                        <ModifyPartition wcm:action="add">                            <Active>true</Active>                            <Extend>false</Extend>                            <Format>NTFS</Format>                            <Label>OS_Install</Label>                            <Letter>C</Letter>                            <Order>1</Order>                            <PartitionID>1</PartitionID>                        </ModifyPartition>                    </ModifyPartitions>                    <DiskID>0</DiskID>                    <WillWipeDisk>true</WillWipeDisk>                </Disk>                <WillShowUI>Always</WillShowUI>            </DiskConfiguration>            <ImageInstall>                <OSImage>                    <InstallTo>                        <DiskID>0</DiskID>                        <PartitionID>1</PartitionID>                    </InstallTo>                    <WillShowUI>Always</WillShowUI>                    <InstallFrom>                        <MetaData wcm:action="add">                            <Value>1</Value>                            <Key>/IMAGE/INDEX</Key>                        </MetaData>                    </InstallFrom>                </OSImage>            </ImageInstall>            <UserData>                <ProductKey>                    <WillShowUI>Always</WillShowUI>                    <Key>[KEY]</Key>                </ProductKey>                <AcceptEula>true</AcceptEula>            </UserData>        </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>Always</WillShowUI>            </SetupUILanguage>            <InputLocale>en-us</InputLocale>            <SystemLocale>en-us</SystemLocale>            <UserLocale>en-us</UserLocale>            <UILanguage>en-us</UILanguage>            <UILanguageFallback>en-us</UILanguageFallback>        </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">            <OEMInformation>                <HelpCustomized>false</HelpCustomized>            </OEMInformation>        </component>    </settings>    <settings pass="oobeSystem">        <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">            <OOBE>                <ProtectYourPC>1</ProtectYourPC>                <NetworkLocation>Work</NetworkLocation>            </OOBE>            <AutoLogon>                <Enabled>true</Enabled>                <LogonCount>5</LogonCount>                <Username>Admin</Username>            </AutoLogon>            <UserAccounts>                <LocalAccounts>                    <LocalAccount wcm:action="add">                        <Description>Test Account</Description>                        <DisplayName>Test</DisplayName>                        <Group>Administrators</Group>                        <Name>Test</Name>                    </LocalAccount>                </LocalAccounts>            </UserAccounts>        </component>        <component name="Microsoft-Windows-Deployment" 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">            <Reseal>                <Mode>Audit</Mode>            </Reseal>        </component>    </settings>    <cpi:offlineImage cpi:source="wim:c:/users/Admin/downloads/install.wim#Windows 8 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" /></unattend>
  2. I'm trying to automate the installation of Windows 8.1 Pro Preview. I've managed to get some of it done. The one part I'm stuck on is having to pick an operating system. The prompt is:

    "Select the Operating System you want to install.

    Windows 8.1 Pro Preview x64 [DATE]"

    Does anyone know how to automatically pick it? I've tried

    <ImageInstall>     <OSImage>         <InstallTo>             <DiskID>0</DiskID>             <PartitionID>1</PartitionID>         </InstallTo>         <WillShowUI>Always</WillShowUI>         <InstallFrom>              <MetaData wcm:action="add">              <Key>/IMAGE/INDEX</Key>              <Value>1</Value> </MetaData>         </InstallFrom>     </OSImage> </ImageInstall>

    I've also tried /IMAGE/NAME and the value being "Windows 8.1 Pro Preview"

    Any help would be greatly appreciated!

×
×
  • Create New...