Jump to content

myselfidem

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    myselfidem got a reaction from SunLion in Create your own Autounattend.xml All-In-One (x86/amd64)   
    Autounattend.xml for Windows 7 HomePremium amd64 DVD
    You can try:


    <?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="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>it-IT</UILanguage>
    </SetupUILanguage>
    <InputLocale>0410:00000410</InputLocale>
    <SystemLocale>it-IT</SystemLocale>
    <UILanguage>it-IT</UILanguage>
    <UserLocale>it-IT</UserLocale>
    </component>
    <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>
    <WillShowUI>Always</WillShowUI>
    </DiskConfiguration>
    <ImageInstall>
    <OSImage>
    <InstallFrom>
    <MetaData wcm:action="add">
    <Key>/IMAGE/NAME</Key>
    <Value>Windows 7 HOMEPREMIUM</Value>
    </MetaData>
    </InstallFrom>
    </OSImage>
    </ImageInstall>
    <UserData>
    <AcceptEula>true</AcceptEula>
    <ProductKey>
    <!-- Default key is needed for silent install (or a valid key) -->
    <!-- Example using Default key for Windows 7 HOMEPREMIUM -->
    <Key>RHPQ2-RMFJH-74XYM-BH4JX-XM76F</Key>
    <WillShowUI>OnError</WillShowUI>
    </ProductKey>
    </UserData>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-Security-SPP-UX" 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">
    <SkipAutoActivation>true</SkipAutoActivation>
    </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>W. Europe Standard Time</TimeZone>
    </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">
    <UILanguage>it-IT</UILanguage>
    <UserLocale>it-IT</UserLocale>
    <InputLocale>0410:00000410</InputLocale>
    </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>W. Europe Standard Time</TimeZone>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Home</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    </OOBE>
    <RegisteredOrganization>Frutto-Di-Mare</RegisteredOrganization>
    <AutoLogon>
    <Password>
    <Value></Value>
    </Password>
    <Enabled>true</Enabled>
    <LogonCount>9999999</LogonCount>
    <!-- Enables built-in Administrator -->
    <Username>Administrator</Username>
    </AutoLogon>
    <UserAccounts>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Password>
    <Value></Value>
    <PlainText>true</PlainText>
    </Password>
    <DisplayName>Admin</DisplayName>
    <Name>Admin</Name>
    <Group>Administrators</Group>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>
    </component>
    </settings>
    </unattend>


  2. Like
    myselfidem got a reaction from SunLion in Create your own Autounattend.xml All-In-One (x86/amd64)   
    It's always needed to choose the Windows 7 OS you want install because you have x86 and amd64 options!
    I can read inside your post:
    I'm trying to make a custom install of my windows 7 so1 homepremium x64
    And you want install: <ImageName>Windows 7 Enterprise</ImageName> ???
    First, you can use WSIM to create your Autounattend.xml file for Windows 7 x86.
    After you can duplicate the passes and chek if there is errors with WSIM.
    Example (adapt the values to your needs):


    <?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>it-IT</UILanguage>
    </SetupUILanguage>
    <InputLocale>0410:00000410</InputLocale>
    <SystemLocale>it-IT</SystemLocale>
    <UILanguage>it-IT</UILanguage>
    <UserLocale>it-IT</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>it-IT</UILanguage>
    </SetupUILanguage>
    <InputLocale>0410:00000410</InputLocale>
    <SystemLocale>it-IT</SystemLocale>
    <UILanguage>it-IT</UILanguage>
    <UserLocale>it-IT</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>Always</WillShowUI>
    </DiskConfiguration>
    <Display>
    <ColorDepth>32</ColorDepth>
    <HorizontalResolution>1280</HorizontalResolution>
    <VerticalResolution>1024</VerticalResolution>
    <RefreshRate>60</RefreshRate>
    </Display>
    <DynamicUpdate>
    <Enable>false</Enable>
    <WillShowUI>Never</WillShowUI>
    </DynamicUpdate>
    <ImageInstall>
    <OSImage>
    <WillShowUI>Always</WillShowUI>
    </OSImage>
    </ImageInstall>
    <UserData>
    <ProductKey>
    <WillShowUI>OnError</WillShowUI>
    <!-- The key must match the Windows 7 Edition to install -->
    <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key>
    </ProductKey>
    <AcceptEula>true</AcceptEula>
    </UserData>
    </component>
    <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>
    <WillShowUI>Always</WillShowUI>
    </DiskConfiguration>
    <Display>
    <ColorDepth>32</ColorDepth>
    <HorizontalResolution>1280</HorizontalResolution>
    <VerticalResolution>1024</VerticalResolution>
    <RefreshRate>60</RefreshRate>
    </Display>
    <DynamicUpdate>
    <Enable>false</Enable>
    <WillShowUI>Never</WillShowUI>
    </DynamicUpdate>
    <ImageInstall>
    <OSImage>
    <WillShowUI>Always</WillShowUI>
    </OSImage>
    </ImageInstall>
    <UserData>
    <ProductKey>
    <WillShowUI>OnError</WillShowUI>
    <!-- The key must match the Windows 7 Edition to install -->
    <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key>
    </ProductKey>
    <AcceptEula>true</AcceptEula>
    </UserData>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-Security-SPP-UX" 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">
    <SkipAutoActivation>true</SkipAutoActivation>
    </component>
    <component name="Microsoft-Windows-Security-SPP-UX" 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">
    <SkipAutoActivation>true</SkipAutoActivation>
    </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">
    <ComputerName>Se7en</ComputerName>
    <TimeZone>W. Europe 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">
    <ComputerName>Se7en</ComputerName>
    <TimeZone>W. Europe Standard Time</TimeZone>
    </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">
    <UILanguage>it-IT</UILanguage>
    <UserLocale>it-IT</UserLocale>
    <InputLocale>0410:00000410</InputLocale>
    </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">
    <UILanguage>it-IT</UILanguage>
    <UserLocale>it-IT</UserLocale>
    <InputLocale>0410:00000410</InputLocale>
    </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">
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Home</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    </OOBE>
    <RegisteredOrganization>Frutto-Di-Mare</RegisteredOrganization>
    <UserAccounts>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Name>Admin</Name>
    <Group>Administrators</Group>
    <Password>
    <Value></Value>
    <PlainText>true</PlainText>
    </Password>
    <DisplayName>Admin</DisplayName>
    <Description>Administrator</Description>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>
    <AutoLogon>
    <Password>
    <Value></Value>
    </Password>
    <Enabled>true</Enabled>
    <LogonCount>9999999</LogonCount>
    <Username>Administrator</Username>
    </AutoLogon>
    <TimeZone>W. Europe 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">
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Home</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    </OOBE>
    <RegisteredOrganization>Frutto-Di-Mare</RegisteredOrganization>
    <UserAccounts>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Name>Admin</Name>
    <Group>Administrators</Group>
    <Password>
    <Value></Value>
    <PlainText>true</PlainText>
    </Password>
    <DisplayName>Admin</DisplayName>
    <Description>Administrator</Description>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>
    <AutoLogon>
    <Password>
    <Value></Value>
    </Password>
    <Enabled>true</Enabled>
    <LogonCount>9999999</LogonCount>
    <!-- Enables built-in Administrator -->
    <Username>Administrator</Username>
    </AutoLogon>
    <TimeZone>W. Europe Standard Time</TimeZone>
    </component>
    </settings>
    </unattend>
    <!--You will have built-in Administrator and User account: Admin. Dialog boxes displayed: OS to install (Windows 7 Edition to install) and Disk Configuration-->


    If you have only Windows 7 amd64 HomePremium, you don't need to use Autounattend.xml file AIO!
  3. Like
    myselfidem got a reaction from Asifmute in How To Integrate/Slipstream 'SP3' Into MS Office 2007   
    Yes, it's the same way as with SP2!
    http://support.micro....com/kb/2591039
    http://www.wincert.n...dpost__p__75299
    Thanks Makcalable!
  4. Like
    There are two methods for customizing disks and partitions with Autounattend.xml file:
    First using the sting and value to display the wizard and customize manually disks and partitions:

    <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration>Second do not display the wizard with stings and values already set:Example:

    <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>Primary</Type> <Size>100</Size> </CreatePartition> <CreatePartition wcm:action="add"> <Order>2</Order> <Size>10000</Size> <Type>Primary</Type> </CreatePartition> <CreatePartition wcm:action="add"> <Order>3</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Order>1</Order> <PartitionID>1</PartitionID> <Label>System</Label> <Format>NTFS</Format> <Active>true</Active> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>2</Order> <PartitionID>2</PartitionID> <Letter>C</Letter> <Label>SEVEN</Label> <Format>NTFS</Format> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>3</Order> <Format>NTFS</Format> <PartitionID>3</PartitionID> <Label>DATA</Label> <Letter>D</Letter> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration>We can't merge the two methods or strings!
  5. Like
    myselfidem got a reaction from CrAzYs in [SOLVED] IE10 langpack not integrated in 1.4.1.22   
    Many thanks Legolash2o !
     
    Keep your awesome work and program.
    Regards
  6. Like
    myselfidem got a reaction from RicaNeaga in Everything Search Engine 1.3.3.658b   
    A little typo error inside Evthing.inf:
    [Strings]T13ROE=SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\EverythingConfigDisplayProgram=SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\EverythingAppName=Everythingversion=1.3.2.644bThanks to change to: version=1.3.2.645b
     
    Regards
  7. Like
    myselfidem got a reaction from newuser121 in [SOLVED] How to use WPI with WinSetupFromUSB   
    Good news! Thanks
     
    *Edit: Credits and thanks to Shibbey for this tip !!!!
  8. Like
    myselfidem got a reaction from SunLion in [14 Juin 2014] Updates Packs GDR Windows 7 SP1   
    Merci mooms.
    Cela fonctionne également avec WinToolkit 1.4.1.22
  9. Like
    Maybe Legolash2o can add this new tweak inside WinToolkit ?
  10. Like
    myselfidem got a reaction from newuser121 in Office 2007, Unattended Setup & Fine-tuning   
    Thanks N1K, it's a good idea, because my PDF files are in french language!
    That means only needed to download the rar file!
    Regards
  11. Like
    myselfidem got a reaction from newuser121 in Office 2007, Unattended Setup & Fine-tuning   
    Many thanks N1K.
    I submitted the "OFFICE_2007_2010_distribualbe.7z" file and this one have been uploaded successfully!
    I could change the file name if it's needed, and if this file is accepted!
    Regards
  12. Like
    myselfidem got a reaction from newuser121 in Office 2007, Unattended Setup & Fine-tuning   
    Many thanks N1K (NIM).
    I uploaded the new file and updated my small tutorial with the new link inside this thread.
    Regards
  13. Like
    myselfidem got a reaction from newuser121 in Office 2007, Unattended Setup & Fine-tuning   
    Your example is only available for Office 2010!
    But of course you can use for Office 2007, if you change name and path...Be carefull...
    I made a new folder with new 7zsd.sfx files, because for some unknown reason Norton Security removed all the 7zsd.sfx files inside my folders! The files 7zsd.sfx are already customized with the nice Office icon.
    Tested and now Norton Security do not remove my new files 7zsd.sfx after dowloading!
    Here is the new download link for OFICE_2007_2010_SFX.zip
    http://www.mediafire.../?0f9oidqij3ga8
    This topic is about "How to create your own Office 2007 or 2010...". Feel free to use SFXMaker, if you want!
    Cheers and Regards.
  14. Like
    myselfidem got a reaction from newuser121 in Office 2007, Unattended Setup & Fine-tuning   
    FAQ:
     
    How to add all updates for Microsoft Office inside your distribution folder to have up-to-date ?
     
    We can use CollectUpdates.vbs, discribed here:
     
    Chapter: Testing and verifying the Windows Installer patch (.msp) files
     
     
    http://technet.microsoft.com/en-au/library/cc178995(office.12).aspx
     
  15. Like
    myselfidem got a reaction from Lobillo in Create your own Autounattend.xml All-In-One (x86/amd64)   
    Could you attach your Autounattend.xml file, please ?
    You can read on the first page more infos about order passes x86 and amd64!
     
    *Edit:
    1 - There is no Windows 7 amd64 STARTER EDITION !
    2 - You can't use Autounattend.xml AIO to install ALL IMAGES like your example!
  16. Like
    myselfidem got a reaction from RicaNeaga in Language Bar   
    I think WinToolkit use this stuff and can integrate registry keys inside the mounted hives!
  17. Like
    myselfidem got a reaction from Phöbus in Error: To commit Image?!   
    @Phöbus
    After a new test, I see that the folders "WinToolkit_Temp\Mount" are created now using WinToolkit !
    When the image is successfully commited the temp folder "Mount" is removed and all works fine. And when we exit WinToolkit the temp folder "WinToolkit_Temp" is removed.
    It seems the trouble is the "Mount" folder wasn't empty in this case.
    Here is my result test (Logs\Mount Logs):


    [4452] [ INFO ] Mounting new image.
    Wim: [C:\Win7_SP1\sources\install.wim]
    Image Index: [5]
    Mount Path: [C:\WinToolkit_Temp\Mount]
    [4452] [ INFO ] Wimserv process started for guid e433dace-d32e-46a6-97bd-5c87907a0ad7. Id is 4852
    [4852] [ INFO ] ImageUnmarshallHandle: Reconstituting wim at C:\Win7_SP1\sources\install.wim.
    [4852] [ INFO ] Mounted image at C:\WinToolkit_Temp\Mount.
    [4852] [ INFO ] Received unmount request for image with guid e433dace-d32e-46a6-97bd-5c87907a0ad7.
    [4852] [ INFO ] Unmount for image at C:\WinToolkit_Temp\Mount complete.

    *Edit:
    You can try to do like this:
    Exit WinToolkit
    Browse to the folder WinToolkit_Temp\Mount if exists
    Select the folder and use on your keyboard "Shift + Del" to remove this one
    Go to the registry and look at this key:
    HKLM\SOFTWARE\Microsoft\WIMMount\Mounted Images
    Remove this key
    Try again to launch WinToolkit and the temp folders will be created a new time.
  18. Like
    myselfidem got a reaction from Phöbus in Error: To commit Image?!   
    The folder: "C:\WinToolkit_Temp" doesn't exist.
    Create the folder first manually!
    Cheers
  19. Like
    myselfidem got a reaction from George King in WinToolkit and RTSeven combos if any?   
    Use WinToolkit instead RT Seven Lite!
    Make your choice...
  20. Like
    myselfidem got a reaction from heldigard in GDism ELDI Java and .NET   
    @heldigard
    Here is the new file for French.
    Many thanks
    However, I have the same error on "GDism ELDI whithout Dism" and "GDism .NET ELDI portable":
    WinAppSettings.fr-FR.txt

  21. Like
    myselfidem got a reaction from VITOLIER in WIN HOME PREM 7 RUSSIAN   
    Yes! Link already given by Kels:
    http://www.wincert.n...ows-7-sp1-disk/
    We can read infos (x86 or amd64) inside the file: idwbinfo.txt
    Browse to : %SystemDrive%\Folder_Location\sources\idwbinfo.txt
    Thanks
  22. Like
    myselfidem got a reaction from mail4skwarka in Unattended not working   
    We can read inside: Unattended Windows Setup Reference for Windows 7.chm:
    Download


    http://www.microsoft.com/download/en/details.aspx?id=2458

    For your two questions: Yes!
  23. Like
    myselfidem got a reaction from mail4skwarka in Unattended not working   
    Infinitely value: <LogonCount>9999999</LogonCount> !
    Maybe you can try also to give another value for password, because it's the same value for your user account !
    Thanks to try it and let us know.
  24. Like
    myselfidem got a reaction from bphlpt in Create your own Autounattend.xml All-In-One (x86/amd64)   
    How to customize your Autounattend.xml AIO (x86/amd64) file ?

    When you have created your own Windows 7 AIO with all or some wanted images on one install.wim image you can customize your Autounattend.xml file to suit your needs.

    The first stage is to use Windows System Image Manager (WSIM) and create an Autounattend.xml file for example Windows 7 x86 Edition.

    WSIM is included with AIK 3.0 for Windows 7.

    http://www.microsoft...ls.aspx?id=5753

    When all your customization are made, save the file.

    After,open your Autounattend.xml file with notepad and duplicate the same lines for CPU amd64, changing only x86 to amd64 on each line.

    Remove the last line indicating the location of the install.wim image source!

    Don't forget to remove the ie.cfg file or rename as ei.cfg.bak located inside:C:\Folder_Location\sources\ei.cfg

    A trial or valid key is needed for the installation and you can choose to install silently only one Operationg System (x86 or amd64).

    If all the keys are integrated you don't need to add this value and you can choose to install the OS you want.

    Autounattend.xml AIO 2 Images Ultimate (x86/amd64) (the names are fictitious and are used to demonstrate!)

    A - Operating System Windows 7 Ultimate (x86/amd64) with one key.
    Two dialog boxes will be displayed: OS to install and Disk Configuration.

    You must use a key matching the Edition you want install.


    <?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>0409:00000409</InputLocale><SystemLocale>en-US</SystemLocale><UILanguage>en-US</UILanguage><UserLocale>en-US</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>0409:00000409</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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><WillShowUI>Always</WillShowUI></OSImage></ImageInstall><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>John Hood</FullName><Organization>private</Organization></UserData><EnableFirewall>true</EnableFirewall></component><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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><WillShowUI>Always</WillShowUI></OSImage></ImageInstall><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>John Hood</FullName><Organization>private</Organization></UserData><EnableFirewall>true</EnableFirewall></component></settings><settings pass="specialize"><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></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"><ComputerName>John-PC</ComputerName><TimeZone>Pacific 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"><ComputerName>John-PC</ComputerName><TimeZone>Pacific Standard Time</TimeZone></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>High</FilterLevel><Home_Page>http://www.google.com</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>Medium</FilterLevel><Home_Page>http://www.google.com</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></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"><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale><InputLocale>0409:00000409</InputLocale></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"><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale><InputLocale>0409:00000409</InputLocale></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>Pacific Standard Time</TimeZone><RegisteredOwner>John Hood</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>John</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><DisplayName>John</DisplayName><Name>John</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></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>Pacific Standard Time</TimeZone><RegisteredOwner>John Hood</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>John</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><DisplayName>John</DisplayName><Name>John</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component></settings></unattend><!--Customized by myselfidem. Only for One Image Windows 7 Ultimate (x86 and amd64) whithout using SetProductKey.cmd. Adapt the values to your needs.-->

    B - Autounattend.xml AIO (x86/amd64) all images and Disk Configuration already customized and all keys integrated.

    Autounattend.xml AIO (x86/amd64).
    Only one dialog box will be displayed to choose the OS to install

    <?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>fr-FR</UILanguage></SetupUILanguage><InputLocale>100c:0000100c</InputLocale><SystemLocale>fr-CH</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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>fr-FR</UILanguage></SetupUILanguage><InputLocale>100c:0000100c</InputLocale><SystemLocale>fr-CH</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>OnError</WillShowUI><Disk wcm:action="add"><DiskID>0</DiskID><WillWipeDisk>true</WillWipeDisk><CreatePartitions><CreatePartition wcm:action="add"><Order>1</Order><Type>Primary</Type><Size>100</Size></CreatePartition><CreatePartition wcm:action="add"><Order>2</Order><Type>Primary</Type><Extend>true</Extend></CreatePartition></CreatePartitions><ModifyPartitions><ModifyPartition wcm:action="add"><Order>1</Order><PartitionID>1</PartitionID><Label>System</Label><Format>NTFS</Format><Active>true</Active></ModifyPartition><ModifyPartition wcm:action="add"><Order>2</Order><PartitionID>2</PartitionID><Letter>C</Letter><Label>SEVEN</Label><Format>NTFS</Format></ModifyPartition></ModifyPartitions></Disk></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><InstallTo><DiskID>0</DiskID><PartitionID>2</PartitionID></InstallTo><WillShowUI>OnError</WillShowUI><InstallToAvailablePartition>false</InstallToAvailablePartition></OSImage></ImageInstall><UserData><AcceptEula>true</AcceptEula><FullName>Arthur Bolomey</FullName><Organization>particulier</Organization></UserData><EnableFirewall>true</EnableFirewall></component><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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>OnError</WillShowUI><Disk wcm:action="add"><DiskID>0</DiskID><WillWipeDisk>true</WillWipeDisk><CreatePartitions><CreatePartition wcm:action="add"><Order>1</Order><Type>Primary</Type><Size>100</Size></CreatePartition><CreatePartition wcm:action="add"><Order>2</Order><Type>Primary</Type><Extend>true</Extend></CreatePartition></CreatePartitions><ModifyPartitions><ModifyPartition wcm:action="add"><Order>1</Order><PartitionID>1</PartitionID><Label>System</Label><Format>NTFS</Format><Active>true</Active></ModifyPartition><ModifyPartition wcm:action="add"><Order>2</Order><PartitionID>2</PartitionID><Letter>C</Letter><Label>SEVEN</Label><Format>NTFS</Format></ModifyPartition></ModifyPartitions></Disk></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><InstallTo><DiskID>0</DiskID><PartitionID>2</PartitionID></InstallTo><WillShowUI>OnError</WillShowUI><InstallToAvailablePartition>false</InstallToAvailablePartition></OSImage></ImageInstall><UserData><AcceptEula>true</AcceptEula><FullName>Arthur Bolomey</FullName><Organization>particulier</Organization></UserData><EnableFirewall>true</EnableFirewall></component></settings><settings pass="specialize"><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></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"><ComputerName>Se7en</ComputerName><TimeZone>W. Europe 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"><ComputerName>Se7en</ComputerName><TimeZone>W. Europe Standard Time</TimeZone></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>High</FilterLevel><Home_Page>http://www.google.ch</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>Medium</FilterLevel><Home_Page>http://www.google.ch</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></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>100c:0000100c</InputLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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>100c:0000100c</InputLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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>W. Europe Standard Time</TimeZone><RegisteredOwner>Arthur Bolomey</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>Arthur</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><DisplayName>Arthur</DisplayName><Name>Arthur</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></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>W. Europe Standard Time</TimeZone><RegisteredOwner>Arthur Bolomey</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>Arthur</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><DisplayName>Arthur</DisplayName><Name>Arthur</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component></settings></unattend><!--Customized by myselfidem. For Windows 7 AIO. One partition and 1 Aministrator. All keys must be already integrated. Adapt the values to your needs-->


    C - Autounattend.xml AIO [with only One install.wim and 2 images (using indexes)]

    <?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>fr-FR</UILanguage></SetupUILanguage><InputLocale>040c:0000040c</InputLocale><SystemLocale>fr-FR</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-FR</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>fr-FR</UILanguage></SetupUILanguage><InputLocale>040c:0000040c</InputLocale><SystemLocale>fr-FR</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-FR</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"><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>Robin Turtle</FullName><Organization>private</Organization></UserData><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><ImageInstall><OSImage><WillShowUI>OnError</WillShowUI><InstallFrom><MetaData wcm:action="add"><Key>/IMAGE/INDEX</Key><Value>1</Value></MetaData></InstallFrom></OSImage></ImageInstall><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution></Display></component><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"><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>Robin Turtle</FullName><Organization>private</Organization></UserData><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><ImageInstall><OSImage><WillShowUI>OnError</WillShowUI><InstallFrom><MetaData wcm:action="add"><Key>/IMAGE/INDEX</Key><Value>2</Value></MetaData></InstallFrom></OSImage></ImageInstall><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution></Display></component></settings>.......

    You can download the folder SetProductKey.rar (fr-FR/en-US) containing more examples and a useful batch file to integrate the keys, here:

    http://www.mediafire.../?uss84mzbqo91q

    Note: Always check your new Autounattend.xml file with WSIM to see if errors!

    Useful information:
    http://technet.microsoft.com/en-us/library/dd744261(WS.10).aspx

    *Edit: Thanks to report errors if you have.
  25. Like
    myselfidem got a reaction from chianf092 in Create your own Autounattend.xml All-In-One (x86/amd64)   
    How to customize your Autounattend.xml AIO (x86/amd64) file ?

    When you have created your own Windows 7 AIO with all or some wanted images on one install.wim image you can customize your Autounattend.xml file to suit your needs.

    The first stage is to use Windows System Image Manager (WSIM) and create an Autounattend.xml file for example Windows 7 x86 Edition.

    WSIM is included with AIK 3.0 for Windows 7.

    http://www.microsoft...ls.aspx?id=5753

    When all your customization are made, save the file.

    After,open your Autounattend.xml file with notepad and duplicate the same lines for CPU amd64, changing only x86 to amd64 on each line.

    Remove the last line indicating the location of the install.wim image source!

    Don't forget to remove the ie.cfg file or rename as ei.cfg.bak located inside:C:\Folder_Location\sources\ei.cfg

    A trial or valid key is needed for the installation and you can choose to install silently only one Operationg System (x86 or amd64).

    If all the keys are integrated you don't need to add this value and you can choose to install the OS you want.

    Autounattend.xml AIO 2 Images Ultimate (x86/amd64) (the names are fictitious and are used to demonstrate!)

    A - Operating System Windows 7 Ultimate (x86/amd64) with one key.
    Two dialog boxes will be displayed: OS to install and Disk Configuration.

    You must use a key matching the Edition you want install.


    <?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>0409:00000409</InputLocale><SystemLocale>en-US</SystemLocale><UILanguage>en-US</UILanguage><UserLocale>en-US</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>0409:00000409</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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><WillShowUI>Always</WillShowUI></OSImage></ImageInstall><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>John Hood</FullName><Organization>private</Organization></UserData><EnableFirewall>true</EnableFirewall></component><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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><WillShowUI>Always</WillShowUI></OSImage></ImageInstall><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>John Hood</FullName><Organization>private</Organization></UserData><EnableFirewall>true</EnableFirewall></component></settings><settings pass="specialize"><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></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"><ComputerName>John-PC</ComputerName><TimeZone>Pacific 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"><ComputerName>John-PC</ComputerName><TimeZone>Pacific Standard Time</TimeZone></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>High</FilterLevel><Home_Page>http://www.google.com</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>Medium</FilterLevel><Home_Page>http://www.google.com</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></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"><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale><InputLocale>0409:00000409</InputLocale></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"><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale><InputLocale>0409:00000409</InputLocale></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>Pacific Standard Time</TimeZone><RegisteredOwner>John Hood</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>John</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><DisplayName>John</DisplayName><Name>John</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></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>Pacific Standard Time</TimeZone><RegisteredOwner>John Hood</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>John</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><DisplayName>John</DisplayName><Name>John</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component></settings></unattend><!--Customized by myselfidem. Only for One Image Windows 7 Ultimate (x86 and amd64) whithout using SetProductKey.cmd. Adapt the values to your needs.-->

    B - Autounattend.xml AIO (x86/amd64) all images and Disk Configuration already customized and all keys integrated.

    Autounattend.xml AIO (x86/amd64).
    Only one dialog box will be displayed to choose the OS to install

    <?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>fr-FR</UILanguage></SetupUILanguage><InputLocale>100c:0000100c</InputLocale><SystemLocale>fr-CH</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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>fr-FR</UILanguage></SetupUILanguage><InputLocale>100c:0000100c</InputLocale><SystemLocale>fr-CH</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>OnError</WillShowUI><Disk wcm:action="add"><DiskID>0</DiskID><WillWipeDisk>true</WillWipeDisk><CreatePartitions><CreatePartition wcm:action="add"><Order>1</Order><Type>Primary</Type><Size>100</Size></CreatePartition><CreatePartition wcm:action="add"><Order>2</Order><Type>Primary</Type><Extend>true</Extend></CreatePartition></CreatePartitions><ModifyPartitions><ModifyPartition wcm:action="add"><Order>1</Order><PartitionID>1</PartitionID><Label>System</Label><Format>NTFS</Format><Active>true</Active></ModifyPartition><ModifyPartition wcm:action="add"><Order>2</Order><PartitionID>2</PartitionID><Letter>C</Letter><Label>SEVEN</Label><Format>NTFS</Format></ModifyPartition></ModifyPartitions></Disk></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><InstallTo><DiskID>0</DiskID><PartitionID>2</PartitionID></InstallTo><WillShowUI>OnError</WillShowUI><InstallToAvailablePartition>false</InstallToAvailablePartition></OSImage></ImageInstall><UserData><AcceptEula>true</AcceptEula><FullName>Arthur Bolomey</FullName><Organization>particulier</Organization></UserData><EnableFirewall>true</EnableFirewall></component><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"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>OnError</WillShowUI><Disk wcm:action="add"><DiskID>0</DiskID><WillWipeDisk>true</WillWipeDisk><CreatePartitions><CreatePartition wcm:action="add"><Order>1</Order><Type>Primary</Type><Size>100</Size></CreatePartition><CreatePartition wcm:action="add"><Order>2</Order><Type>Primary</Type><Extend>true</Extend></CreatePartition></CreatePartitions><ModifyPartitions><ModifyPartition wcm:action="add"><Order>1</Order><PartitionID>1</PartitionID><Label>System</Label><Format>NTFS</Format><Active>true</Active></ModifyPartition><ModifyPartition wcm:action="add"><Order>2</Order><PartitionID>2</PartitionID><Letter>C</Letter><Label>SEVEN</Label><Format>NTFS</Format></ModifyPartition></ModifyPartitions></Disk></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><InstallTo><DiskID>0</DiskID><PartitionID>2</PartitionID></InstallTo><WillShowUI>OnError</WillShowUI><InstallToAvailablePartition>false</InstallToAvailablePartition></OSImage></ImageInstall><UserData><AcceptEula>true</AcceptEula><FullName>Arthur Bolomey</FullName><Organization>particulier</Organization></UserData><EnableFirewall>true</EnableFirewall></component></settings><settings pass="specialize"><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Security-SPP-UX" 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"><SkipAutoActivation>true</SkipAutoActivation></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"><ComputerName>Se7en</ComputerName><TimeZone>W. Europe 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"><ComputerName>Se7en</ComputerName><TimeZone>W. Europe Standard Time</TimeZone></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>High</FilterLevel><Home_Page>http://www.google.ch</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component><component name="Microsoft-Windows-IE-InternetExplorer" 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"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>Medium</FilterLevel><Home_Page>http://www.google.ch</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></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>100c:0000100c</InputLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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>100c:0000100c</InputLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</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>W. Europe Standard Time</TimeZone><RegisteredOwner>Arthur Bolomey</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>Arthur</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><DisplayName>Arthur</DisplayName><Name>Arthur</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></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>W. Europe Standard Time</TimeZone><RegisteredOwner>Arthur Bolomey</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>Arthur</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><DisplayName>Arthur</DisplayName><Name>Arthur</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component></settings></unattend><!--Customized by myselfidem. For Windows 7 AIO. One partition and 1 Aministrator. All keys must be already integrated. Adapt the values to your needs-->


    C - Autounattend.xml AIO [with only One install.wim and 2 images (using indexes)]

    <?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>fr-FR</UILanguage></SetupUILanguage><InputLocale>040c:0000040c</InputLocale><SystemLocale>fr-FR</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-FR</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>fr-FR</UILanguage></SetupUILanguage><InputLocale>040c:0000040c</InputLocale><SystemLocale>fr-FR</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-FR</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"><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>Robin Turtle</FullName><Organization>private</Organization></UserData><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><ImageInstall><OSImage><WillShowUI>OnError</WillShowUI><InstallFrom><MetaData wcm:action="add"><Key>/IMAGE/INDEX</Key><Value>1</Value></MetaData></InstallFrom></OSImage></ImageInstall><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution></Display></component><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"><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>Robin Turtle</FullName><Organization>private</Organization></UserData><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><ImageInstall><OSImage><WillShowUI>OnError</WillShowUI><InstallFrom><MetaData wcm:action="add"><Key>/IMAGE/INDEX</Key><Value>2</Value></MetaData></InstallFrom></OSImage></ImageInstall><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution></Display></component></settings>.......

    You can download the folder SetProductKey.rar (fr-FR/en-US) containing more examples and a useful batch file to integrate the keys, here:

    http://www.mediafire.../?uss84mzbqo91q

    Note: Always check your new Autounattend.xml file with WSIM to see if errors!

    Useful information:
    http://technet.microsoft.com/en-us/library/dd744261(WS.10).aspx

    *Edit: Thanks to report errors if you have.