Jump to content

Recommended Posts

Posted

Hello!

I have created an answer file which works fine but the only thing is i keep getting prompt in the beginning of windows7

installation to choose x86 or x64 setup type. Do i have to insert a new line in the xml file?The answer file was build based on the x86 component installation.

Here is the answer file

<?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>en-US</InputLocale>

<SystemLocale>en-US</SystemLocale>

<UILanguage>en-US</UILanguage>

<UserLocale>en-uS</UserLocale>

</component>

- <component name="Microsoft-Windows-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">

- <DiskConfiguration>

<WillShowUI>OnError</WillShowUI>

- <Disk wcm:action="add">

- <CreatePartitions>

- <CreatePartition wcm:action="add">

<Extend>true</Extend>

<Type>Primary</Type>

<Order>1</Order>

</CreatePartition>

</CreatePartitions>

- <ModifyPartitions>

- <ModifyPartition wcm:action="add">

<Active>true</Active>

<Extend>true</Extend>

<Format>NTFS</Format>

<Label>OS install</Label>

<Letter>J</Letter>

<Order>1</Order>

<PartitionID>1</PartitionID>

</ModifyPartition>

</ModifyPartitions>

<DiskID>0</DiskID>

<WillWipeDisk>true</WillWipeDisk>

</Disk>

</DiskConfiguration>

<EnableFirewall>false</EnableFirewall>

<EnableNetwork>true</EnableNetwork>

<Restart>Restart</Restart>

- <ImageInstall>

- <OSImage>

<InstallToAvailablePartition>true</InstallToAvailablePartition>

<WillShowUI>OnError</WillShowUI>

</OSImage>

</ImageInstall>

- <UserData>

- <ProductKey>

<WillShowUI>OnError</WillShowUI>

</ProductKey>

<AcceptEula>false</AcceptEula>

</UserData>

</component>

</settings>

</unattend>

Note:

I have put accept EULA on false but the installation finishes succesfuly. Is this normal?

Thanks in advance


Posted (edited)

Hello!

It seems that you have an Windows 7 AIO!

You can try to add inside your Autounattend.xml (example for Windows 7 ULTIMATE):

Choose the Image you want to install!


<ImageInstall>
<OSImage>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/NAME</Key>
<Value>Windows 7 ULTIMATE</Value>
</MetaData>
</InstallFrom>
<InstallToAvailablePartition>true</InstallToAvailablePartition>
<WillShowUI>OnError</WillShowUI>
</OSImage>
</ImageInstall>

And it's better to set : Accept EULA!

<AcceptEula>true</AcceptEula>

I hope that will help you!

Edited by myselfidem

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...