Jump to content

Unattended Installation - How to HIDE Language and Keyboard Selection


Recommended Posts

Hello i'm trying to make an unattended installation of windows 7 using the below procedure:

 

1) Boot WinPE x86 on a VirtualBox machine

2) net use H: \\192.168.2.205\os /user:myuser mypass

3) cd H:

4) setup.exe /unattend:win7.xml /noreboot

 

win7.xml -> unattend.txt

 

The problem is that i keep getting this screen post-393757-0-97631400-1401631521_thumb.

 

How can i skip it ?? I already selected my language setup in the answer file , thanks !

<?xml version="1.0" encoding="utf-8"?><!--This answer file generated by RT Seven Lite--><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>      <UserLocale>en-US</UserLocale>      <UILanguage>en-US</UILanguage>      <SystemLocale>en-US</SystemLocale>    </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">      <ImageInstall>        <OSImage>          <InstallFrom>            <MetaData wcm:action="add">              <Key>/IMAGE/NAME</Key>              <value>Windows 7 ULTIMATE</value>            </MetaData>          </InstallFrom>          <InstallToAvailablePartition>false</InstallToAvailablePartition>          <WillShowUI>OnError</WillShowUI>        </OSImage>      </ImageInstall>      <UserData>        <ProductKey>          <Key>D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV</Key>          <WillShowUI>OnError</WillShowUI>        </ProductKey>        <Organization>user</Organization>        <FullName>user</FullName>        <AcceptEula>true</AcceptEula>      </UserData>    </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">      <UserAccounts>        <LocalAccounts />        <AdministratorPassword>          <Value />        </AdministratorPassword>      </UserAccounts>      <AutoLogon>        <Password>          <Value />        </Password>        <Enabled>true</Enabled>        <LogonCount>1</LogonCount>        <Username>Administrator</Username>      </AutoLogon>      <OOBE>        <NetworkLocation>Work</NetworkLocation>        <HideEULAPage>true</HideEULAPage>        <ProtectYourPC>1</ProtectYourPC>        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>        <SkipMachineOOBE>true</SkipMachineOOBE>        <SkipUserOOBE>true</SkipUserOOBE>      </OOBE>      <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>      <TimeZone>GTB Standard Time</TimeZone>    </component>  </settings>  <settings pass="specialize">    <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>user-pc</ComputerName>    </component>    <component name="Microsoft-Windows-Security-Licensing-SLC-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>  </settings></unattend>
Edited by invader7
Link to comment
Share on other sites


Try adding this in the indicated (first line) Pass

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

HTH

Edited by submix8c
Link to comment
Share on other sites

Thanks ! Tried this with no luck ! Is this the correct position ??

<?xml version="1.0" encoding="utf-8"?><!--This answer file generated by RT Seven Lite--><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>      <UserLocale>en-US</UserLocale>      <UILanguage>en-US</UILanguage>      <SystemLocale>en-US</SystemLocale>    </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">      <ImageInstall>        <OSImage>          <InstallFrom>            <MetaData wcm:action="add">              <Key>/IMAGE/NAME</Key>              <value>Windows 7 ULTIMATE</value>            </MetaData>          </InstallFrom>          <InstallToAvailablePartition>false</InstallToAvailablePartition>          <WillShowUI>OnError</WillShowUI>        </OSImage>      </ImageInstall>      <UserData>        <ProductKey>          <Key>D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV</Key>          <WillShowUI>OnError</WillShowUI>        </ProductKey>        <Organization>user</Organization>        <FullName>user</FullName>        <AcceptEula>true</AcceptEula>      </UserData>    </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>0409:00000409</InputLocale>        <SystemLocale>en-US</SystemLocale>                    <UILanguage>en-US</UILanguage>        <UserLocale>en-US</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">      <UserAccounts>        <LocalAccounts />        <AdministratorPassword>          <Value />        </AdministratorPassword>      </UserAccounts>      <AutoLogon>        <Password>          <Value />        </Password>        <Enabled>true</Enabled>        <LogonCount>1</LogonCount>        <Username>Administrator</Username>      </AutoLogon>      <OOBE>        <NetworkLocation>Work</NetworkLocation>        <HideEULAPage>true</HideEULAPage>        <ProtectYourPC>1</ProtectYourPC>        <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>        <SkipMachineOOBE>true</SkipMachineOOBE>        <SkipUserOOBE>true</SkipUserOOBE>      </OOBE>      <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>      <TimeZone>GTB Standard Time</TimeZone>    </component>  </settings>  <settings pass="specialize">    <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>user-pc</ComputerName>    </component>    <component name="Microsoft-Windows-Security-Licensing-SLC-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>  </settings></unattend>
Link to comment
Share on other sites

Yes, it is. I have -no clue- whether this one will work for you.

Open the "spoiler" and copy/paste the contents.

http://www.msfn.org/board/topic/170809-multiple-windows-7-versions-on-same-iso-unattended-product-key/#entry1065445

Bear in mind two three things -

1 - It is completely  Hands-Off (fully unattended).

2 - There's a line(s) for loading Firadisk in order to load the ISO. This XML was created specifically to install from USB using a Mounted Unaltered ISO.

3 - It -very- specifically defines the Partition Scheme and that part did -not- work unless I specifically "cleaned" the HDD (with diskpart) before running. In your case, you've (I think?) specified that you want to pick where to install with

<InstallToAvailablePartition>false</InstallToAvailablePartition>

Beyond that I'm unsure since I haven't used your method (WinPE Boot), however realize that Boot from ISO/DVD (my "method" is similar) kicks off WinPE, so I might -assume- it should work for you.

 

HTH

Link to comment
Share on other sites

No this didn't work :/ , thanks !

 

Let me tell you that i tried my answer file with bootable dvd and it is working ! My problem exists only when trying to install from a network share !

 

Please take a look at http://social.technet.microsoft.com/Forums/windowsserver/en-US/9074d5da-847e-489e-9b5a-0347341a2ed6/unattended-wds-client-setup-languagelocale-page-is-still-displayed?forum=winserversetup

 

 

 

The Language settings UI is part of credential interface (This is for supporting authentication in other languages). Thus, if you set credential values in Unattended.xml, you have entered all required data and you have bypassed Language UI too.
Link to comment
Share on other sites

From your link -

http://social.technet.microsoft.com/Forums/windowsserver/en-US/9074d5da-847e-489e-9b5a-0347341a2ed6/unattended-wds-client-setup-languagelocale-page-is-still-displayed?forum=winserversetup

I am running WDS in Windows Server 2008 R2. I have created an WDS Client answer file to automated first screen (UI Language/Locale page) and disk partitioning. However, I still get the first UI Language/Locale selection page. automated disk configuration works just fine.

I have further noticed that if I include <Login> section and automated user/password/domain portion, it doesn't display UI Language/Local  page!

I provided valid login credentials under <login> section and it didn't show 'locale/keyboard input method'  as we as Login pages.

It seems that locale/keyboard page can be automated only when we automate Login page?

So, did you use what I provided? It has UserID/PWD settings and indicates Home Group. The intent of linking you to my XML was USE it except for changing certain items ONLY as I had stated in the previous post. IOW, my XML does EXACTLY what the qotes say and is EXACTLY what you seem to be having a problem with, no?

Link to comment
Share on other sites

I used your xml as is , except I changed only this and it didn't work either :/

 <InstallFrom>   <Path>H:\win7_sp1\sources\install.wim</Path>....... 

 

From your link -

http://social.technet.microsoft.com/Forums/windowsserver/en-US/9074d5da-847e-489e-9b5a-0347341a2ed6/unattended-wds-client-setup-languagelocale-page-is-still-displayed?forum=winserversetup

 

I am running WDS in Windows Server 2008 R2. I have created an WDS Client answer file to automated first screen (UI Language/Locale page) and disk partitioning. However, I still get the first UI Language/Locale selection page. automated disk configuration works just fine.

I have further noticed that if I include <Login> section and automated user/password/domain portion, it doesn't display UI Language/Local  page!

 

I provided valid login credentials under <login> section and it didn't show 'locale/keyboard input method'  as we as Login pages.

It seems that locale/keyboard page can be automated only when we automate Login page?

So, did you use what I provided? It has UserID/PWD settings and indicates Home Group. The intent of linking you to my XML was USE it except for changing certain items ONLY as I had stated in the previous post. IOW, my XML does EXACTLY what the qotes say and is EXACTLY what you seem to be having a problem with, no?

Link to comment
Share on other sites

At that first page of Setup (language selection) go into CMD and take a look-see at the Setup log files. It seems to me that it does not see the XML file. Try using a fully qualified path to the XML file in your Setup command.

Link to comment
Share on other sites

At that first page of Setup (language selection) go into CMD and take a look-see at the Setup log files. It seems to me that it does not see the XML file. Try using a fully qualified path to the XML file in your Setup command.

 

Bingo !!!! I looked at setupact.log and i found some entries about the language , then tried to replace all en-US entries in my answer file to el-GR and it worked great !!!

 

My installation sources  folder contains a folder "el-gr" (if this info is useful).

 

EDIT: Added folder "sources/en-us" and changed my lang.ini to:

[Available UI Languages]el-GR = 3en-US = 2[Fallback Languages]el-GR = en-usen-US = en-us

and it works great !!! But wait , what do the numbers mean ?? thanks !!

This is my setupact.log

2014-06-02 22:17:06, Info                  IBS    InstallWindows:Successfully loaded resource language [el-GR]2014-06-02 22:17:06, Info       [0x0601c1] IBS    InstallWindows:Install Path = H:\Sources2014-06-02 22:17:06, Info       [0x0601c2] IBS    InstallWindows:Setup Phase = 22014-06-02 22:17:06, Info       [0x0601e9] IBS    CheckWinPEVersion:Compatible WinPE Version 6.1.7601 sp 1.02014-06-02 22:17:06, Info       [0x0601c9] IBS    InstallWindows:Starting a new install from WinPE2014-06-02 22:17:06, Info                  IBS    InstallWindows: Setup working directory = X:\windows\panther2014-06-02 22:17:06, Info       [0x0601ce] IBS    Setup has started phase 2 at 2014-06-02 22:17:062014-06-02 22:17:06, Info       [0x0601cf] IBS    Install source is H:\Sources2014-06-02 22:17:06, Info       [0x0601d0] IBS    Build version is 6.1.7601.17514 (win7sp1_rtm.101119-1850)2014-06-02 22:17:06, Info       [0x06403f] IBSLIB CreateSetupBlackboard:Creating a new persistent blackboard. Path is [X:\windows\panther\SetupInfo] Setup phase is [2]2014-06-02 22:17:06, Info       [0x090008] PANTHR CBlackboard::Open: X:\windows\panther\SetupInfo succeeded.2014-06-02 22:17:06, Info       [0x064043] IBSLIB CreateSetupBlackboard:Successfully created/opened Setup black board path is [X:\windows\panther\SetupInfo]2014-06-02 22:17:06, Info                  IBS    InstallWindows:No UI language from a previous boot was found on the blackboard. Using selected language [el-GR].2014-06-02 22:17:06, Info                  IBS    InstallWindows:Setup architecture is [x86]2014-06-02 22:17:06, Info       [0x0601d5] IBS    InstallWindows:Starting with Empty Queue. Setup Phase = 22014-06-02 22:17:06, Info                  PANTHR InitializedCriticalSection for pExecQueue->csLock;2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ScenarioDetect in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Engine in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Internal in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ErrorHandler in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Diagnostic in diagnostic.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Unattend in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ParseCommandLine in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Ems  in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module PrepareInstallDrive in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module TempDrive in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CopySetupFiles in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module BootPrep in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module BootEntries in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CopyPrivates in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ProductKey in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ComputerName in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module License in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DiskInformation in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module FixBBPaths in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DiskConfig in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CreatePageFile in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Imaging in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CopyImages in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DeployImages in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DiskSpace in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Completion in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module MountDev in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Cmi in cmisetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module SystemRestore in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module FirstBootCleanup in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module RestartModule in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ExternalDrivers in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CBS in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module SkuAssembly in cmisetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module LanguagePack in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ConfigSet in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module UnattendImgInstall in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CFGOfflineImage in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info                         PnPIBS: Initializing the PnP IBS Module ...2014-06-02 22:17:06, Info                         PnPIBS: Successfully initialized the PnP IBS Module.2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module PnP IBS module in pnpibs.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Compliance in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Rollback in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Locale in winsetup.dll2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:06, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Source media module in winsetup.dll2014-06-02 22:17:06, Info       [0x060359] IBS    Callback_ScenarioDetect:Setup is starting from [2] phase 2014-06-02 22:17:06, Info                  IBS    Callback_BootEnvironmentDetect:FirmwareType 1.2014-06-02 22:17:06, Info                  IBS    Callback_BootEnvironmentDetect: Detected boot environment: BIOS2014-06-02 22:17:06, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:07, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WinPEUI in win32ui.dll2014-06-02 22:17:07, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:07, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WinPEProgress in spprgrss.dll2014-06-02 22:17:07, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:07, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WinPEUpgLoader in upgloader.dll2014-06-02 22:17:07, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:07, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WdsClient in wdsclient.dll2014-06-02 22:17:07, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:07, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WpeUntndBtstrp in winsetup.dll2014-06-02 22:17:07, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;2014-06-02 22:17:07, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Cryptography in cryptosetup.dll2014-06-02 22:17:07, Info       [0x060004] IBS    Callback_UpdateDrivePathsOnBB:No need to update the blackboard paths.2014-06-02 22:17:07, Info                  IBS    LoadHWCompatData:Successfully opened HW compat file [H:\Sources\hwcompat.txt]2014-06-02 22:17:07, Info                  IBS    LoadHWCompatData:Successfully opened HW compat file [H:\Sources\hwexclude.txt]2014-06-02 22:17:07, Info                  IBS    Callback_Compliance_LoadDeviceCompatDB:Count of Device IDs is [18679], count of exclusions is [47]2014-06-02 22:17:07, Info                  IBS    EnumOnlineDriverStoreForInjectedDriverPackages:Enumerating online driver store for injected driver packages.2014-06-02 22:17:07, Info                  IBS    EnumOnlineDriverStoreForInjectedDriverPackages:Enumerated online driver store. Return code is [0x0]2014-06-02 22:17:07, Info       [0x070035] DIAG   CallBack_DiagnosticDataGeneration: Called with notification for Initialization2014-06-02 22:17:07, Info       [0x07003b] DIAG   CallBack_DiagnosticDataGeneration: Starting Timer as we are starting new phase2014-06-02 22:17:07, Info       [0x06019f] IBS    CallBack_ParseCommandLine:Publishing command line option [/unattend:win7_ul_sp1_en.xml]2014-06-02 22:17:07, Info       [0x0600b2] IBS    Callback_Unattend_ProcessCmdLine:Unattend file specified by user is win7_ul_sp1_en.xml2014-06-02 22:17:07, Info       [0x0600b3] IBS    Callback_Unattend_ProcessCmdLine:Unattend full path name is H:\win7_ul_sp1_en.xml2014-06-02 22:17:07, Info       [0x06019f] IBS    CallBack_ParseCommandLine:Publishing command line option [/noreboot]2014-06-02 22:17:07, Info                  IBS    Callback_Engine_ValidateSystemRequirements:Current OS version [6.1.7601] Service pack version [1.0]2014-06-02 22:17:07, Info                  IBS    Callback_Engine_ValidateSystemRequirements:System has enough memory: [3584 MB] >= [376 MB]2014-06-02 22:17:07, Info                  IBS    Callback_Engine_ValidateProcessorRequirements: Processor met minimum system requirements.2014-06-02 22:17:07, Info                         Callback_GatherDiskInfo: Entry: flags = [0x0]; major = [Initialization] / minor = [0x30005]2014-06-02 22:17:07, Info                         RefreshDiskInfo: Using VDS2014-06-02 22:17:07, Info       [0x0606cc] IBS    InitVDSService:Creating VDS loader...2014-06-02 22:17:07, Info       [0x0606cc] IBS    InitVDSService:Loading VDS service... 2014-06-02 22:17:08, Info       [0x0606cc] IBS    InitVDSService:Successfully launched service.2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Querying disk information...2014-06-02 22:17:08, Warning    [0x0606cc] IBS    GetDiskSMARTStatus: Disk does not support SMART failure detection.2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Querying drive letters...2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Done querying drive letters.2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Finished gathering disk information.2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:===== Disk number [0] =====2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  Friendly name: [\\?\PhysicalDrive0]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  Arc path: [multi(0)disk(0)rdisk(0)]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  Disk signature [0x19C01801]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  Size (bytes) [26843545600 / 0x640000000]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  Disk bus type: [Serial ATA]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  SMART health status = UNKNOWN2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  Partition style: MBR2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  4 region(s), 2 partition(s), 2 toplevel partition(s)2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [0 / 0x0]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [32256 / 0x7e00]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [32256 / 0x7e00]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [1016320 / 0xf8200]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [1] -------2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [1048576 / 0x100000]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [104857600 / 0x6400000]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [1]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    MBR partition type: 0x27 (recognized)2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Active partition bit is set2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    OEM partition2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    DOS drive letter [D:]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume1]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Volume label: [System Reserved]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [75313152]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [2] -------2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [105906176 / 0x6500000]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [26736590848 / 0x639a00000]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [2]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    MBR partition type: 0x7 (recognized)2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    DOS drive letter [C:]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume2]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Volume label: [WIN7OS]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Volume flags = [0x90460]2014-06-02 22:17:08, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [16793251840]2014-06-02 22:17:08, Info                         PublishDiskInfoOnBlackboard: Serializing disk info...2014-06-02 22:17:08, Info                         GatherCapabilityParams: Can't tell if user is attempting cross-architecture install (image selection may not be done)2014-06-02 22:17:08, Info       [0x0606cc] IBS    GetSystemDiskNTPath: Found system disk at [\Device\Harddisk0\DR0].2014-06-02 22:17:08, Info       [0x0606cc] IBS    GetSystemDiskNumber: Disk [0] is the system disk.2014-06-02 22:17:08, Info                  IBS    IsDiskSupported:Checking if disk [0] has the necessary driver support.2014-06-02 22:17:08, Info                  IBS    IsDeviceSupported:Device description is [VBOX HARDDISK ATA Device]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [IDE\DiskVBOX_HARDDISK___________________________1.0_____]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [IDE\VBOX_HARDDISK___________________________1.0_____]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [IDE\DiskVBOX_HARDDISK___________________________]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [VBOX_HARDDISK___________________________1.0_____]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [GenDisk]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [GenDisk]2014-06-02 22:17:08, Info                  IBS    IsDeviceIDPresent:Found device ID [GenDisk] in hwcompat list2014-06-02 22:17:08, Info                  IBS    IsDeviceSupported:Device [VBOX HARDDISK ATA Device] is supported2014-06-02 22:17:08, Info                  IBS    IsDeviceSupported:Device description is [ATA Channel 0]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [Intel-2829]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [Internal_IDE_Channel]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [*PNP0600]2014-06-02 22:17:08, Info                  IBS    IsDeviceIDPresent:Found device ID [Internal_IDE_Channel] in hwcompat list2014-06-02 22:17:08, Info                  IBS    IsDeviceSupported:Device [ATA Channel 0] is supported2014-06-02 22:17:08, Info                  IBS    IsDeviceSupported:Device description is [Serial ATA Controller]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&SUBSYS_00000000&REV_02]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&SUBSYS_00000000]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&REV_02]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&CC_010601]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&CC_0106]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_010601]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_0106]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_010601]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_0106]2014-06-02 22:17:08, Info                  IBS    IsDeviceIDPresent:Found device ID [PCI\CC_010601] in hwcompat list2014-06-02 22:17:08, Info                  IBS    IsDeviceSupported:Device [Serial ATA Controller] is supported2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI\PNP0A03]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0A03]2014-06-02 22:17:08, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0A03] in hwcompat list2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI_HAL\PNP0C08]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0C08]2014-06-02 22:17:08, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0C08] in hwcompat list2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      H/w    ID [acpiapic]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTEDInternal\ACPI_HAL]2014-06-02 22:17:08, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTED\ACPI_HAL]2014-06-02 22:17:08, Info                  IBS    IsDeviceIDPresent:Found device ID [acpiapic] in hwcompat list2014-06-02 22:17:08, Info                  IBS    DetermineDeviceSupport:Disk 0 has the necessary driver support2014-06-02 22:17:08, Info                         PublishDiskInfoOnBlackboard: Successfully serialized disk info.2014-06-02 22:17:08, Info                         Callback_GatherDiskInfo: Exit2014-06-02 22:17:08, Info       [0x070035] DIAG   CallBack_DiagnosticDataGeneration: Called with notification for Initialization2014-06-02 22:17:08, Info       [0x07003a] DIAG   CallBack_DiagnosticDataGeneration: Obtaining Install information2014-06-02 22:17:08, Info       [0x070030] DIAG   Install Data logging to BB2014-06-02 22:17:08, Info       [0x07003f] DIAG   CallBack_DiagnosticDataGeneration: Obtaining New OS information2014-06-02 22:17:08, Info       [0x07005f] DIAG   Failed to get the EditionId from the blackboard.[gle=0x00000490]2014-06-02 22:17:08, Info       [0x070066] DIAG   Failed to get the target language from the blackboard.[gle=0x00000490]2014-06-02 22:17:08, Info       [0x07002e] DIAG   Logging New OS to BB2014-06-02 22:17:08, Info                  IBS    Unattend: Setup is running in WinPE; will wait for removable storage devices to initialize before unattend search2014-06-02 22:17:08, Info                  IBS    Unattend: Removable storage devices initialized; waited 0ms (status 0x00000000)2014-06-02 22:17:08, Info                         [setup.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [H:\win7_ul_sp1_en.xml]...2014-06-02 22:17:08, Info                         [setup.exe] UnattendFindAnswerFile: [H:\win7_ul_sp1_en.xml] meets criteria for an explicitly provided unattend file.2014-06-02 22:17:08, Info                  IBS    Callback_Unattend_InitEngine:Using unattend file found at [H:\win7_ul_sp1_en.xml].2014-06-02 22:17:08, Info                  IBS    Setup created HKLM\SYSTEM\Setup\Schema key; status 0x000000002014-06-02 22:17:08, Info                  IBS    Restoring SMI schema hive to HKLM\SYSTEM\Setup\Schema from [H:\Sources\schema.dat]; status 0x000000002014-06-02 22:17:08, Info                  IBS    Restored schema hive; status 0x000000002014-06-02 22:17:08, Info                  IBS    ValidateUnattendFile: prepared schema hive for WinPE-related pass; status = 0x000000002014-06-02 22:17:08, Info                         [setup.exe] ValidateSMIPass: serialized settings stream; status 0x000000002014-06-02 22:17:08, Info                         [setup.exe] ValidateSMIPass: construct settings context; status 0x000000002014-06-02 22:17:08, Info                         [setup.exe] ValidateSMIPass: load SMI settings; status 0x000000002014-06-02 22:17:08, Info       [0x0600c0] IBS    Callback_Unattend_InitEngine:Successfully deserialized and validated unattend file [H:\win7_ul_sp1_en.xml].2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:About to read languages from lang.ini file.2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Langpack root directory is [H:\Langpacks].2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Language [el-GR] was determined to be on media number [0].2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Added language [el-GR] to language list.2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Storing language [el-GR] as lang.ini default language.2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Language [el-GR] has already been installed in the image.2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:[el-GR] is the only language in the lang.ini. Storing it as the target language.2014-06-02 22:17:08, Info                  MIG    Callback_CompliancePrerequisites: event MigLoader:0x170006 occured2014-06-02 22:17:08, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Successfully gathered language list from lang.ini.2014-06-02 22:17:08, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [WpeBootstrapSettings] as processed.2014-06-02 22:17:08, Info                  IBS    ==== Initializing Display Settings ====2014-06-02 22:17:08, Info                  IBS    No display settings specified2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Initializing Computer Name ====2014-06-02 22:17:08, Info                  IBS    Generating a random computer name2014-06-02 22:17:08, Info                  IBS    Computer is already named and no new name is specified, returning success.2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Initializing Virtual Memory Paging File ====2014-06-02 22:17:08, Info                  IBS    No WinPE page file setting specified2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Initializing Optional Components ====2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Initializing Network Access and Applying Configuration ====2014-06-02 22:17:08, Info                  IBS    No EnableNetwork unattend setting was specified; the default action for this context is to disable networking support.2014-06-02 22:17:08, Info                  IBS    Networking support will not be enabled.2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Applying Firewall Settings ====2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Executing Synchronous User-Provided Commands ====2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Executing Asynchronous User-Provided Commands ====2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    ==== Applying Shutdown Settings ====2014-06-02 22:17:08, Info                  IBS    No shutdown setting was specified2014-06-02 22:17:08, Info                  IBS    STATUS: SUCCESS (0x00000001)2014-06-02 22:17:08, Info                  IBS    Successfully applied WinPE bootstrap unattend settings2014-06-02 22:17:08, Info       [0x0604d4] IBS    Callback_ConfigSetProcessUnattend: UseConfigurationSet is false.2014-06-02 22:17:08, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [ImageInfo] as processed.2014-06-02 22:17:08, Info                  IBS    Callback_ImageInstallProcessUnattend2014-06-02 22:17:08, Error      [0x064238] IBSLIB Neither <InstallToAvailablePartition> nor <InstallTo> specified for an <OSImage>[gle=0x00000002]2014-06-02 22:17:08, Warning               IBS    ParseUnattendOSImageAndUpdateBb: Failed to parse the <InstallTo> section. status = 0x803000072014-06-02 22:17:08, Info                  IBS    No <Path> was specified in an <InstallFrom> element for <OSImage>; will assume default one2014-06-02 22:17:08, Info                  IBS    Added metadata for <ImageInstall> entry: key:'/IMAGE/NAME' val:'Windows 7 ULTIMATE'2014-06-02 22:17:08, Info                  IBS    Callback_SetWinPEAndOSImageInfoOnBB: Cannot set image info as source path is not yet set.2014-06-02 22:17:08, Info                         PnPIBS: Entering PnP callback to install drivers on WinPE ...2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver paths ...2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory C:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory E:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory H:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Finished checking for pre-configured driver paths.2014-06-02 22:17:08, Info                         PnPIBS: Reading driver paths from unattend.xml ...2014-06-02 22:17:08, Info                         PnPIBS: Finished reading driver paths from unattend.xml.2014-06-02 22:17:08, Info                         PnPIBS: Exiting PnP callback to install drivers on WinPE ...2014-06-02 22:17:08, Info                         PnPIBS: Entering PnP callback to add drivers to the offline image ...2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver paths ...2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory C:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory E:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory H:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.2014-06-02 22:17:08, Info                         PnPIBS: Finished checking for pre-configured driver paths.2014-06-02 22:17:08, Info                         PnPIBS: Reading driver paths from unattend.xml ...2014-06-02 22:17:08, Info                         PnPIBS: Finished reading driver paths from unattend.xml.2014-06-02 22:17:08, Info                         Callback_GatherDiskInfo: Entry: flags = [0x1]; major = [DriveInformation] / minor = [0x90001]2014-06-02 22:17:08, Info                         RefreshDiskInfo: Using VDS2014-06-02 22:17:08, Info                         RefreshDiskInfo: Found flag DISKINFO_REENUMERATE_DISKS2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Reenumerating disk devices...2014-06-02 22:17:08, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Successfully reenumerated disks...2014-06-02 22:17:13, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Successfully waited for pending device installs.2014-06-02 22:17:13, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Querying disk information...2014-06-02 22:17:13, Warning    [0x0606cc] IBS    GetDiskSMARTStatus: Disk does not support SMART failure detection.2014-06-02 22:17:13, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...2014-06-02 22:17:13, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...2014-06-02 22:17:13, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Querying drive letters...2014-06-02 22:17:13, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Done querying drive letters.2014-06-02 22:17:13, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Finished gathering disk information.2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:===== Disk number [0] =====2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  Friendly name: [\\?\PhysicalDrive0]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  Arc path: [multi(0)disk(0)rdisk(0)]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  Disk signature [0x19C01801]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  Size (bytes) [26843545600 / 0x640000000]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  Disk bus type: [Serial ATA]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  SMART health status = UNKNOWN2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  Partition style: MBR2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  4 region(s), 2 partition(s), 2 toplevel partition(s)2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [0 / 0x0]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [32256 / 0x7e00]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [32256 / 0x7e00]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [1016320 / 0xf8200]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [1] -------2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [1048576 / 0x100000]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [104857600 / 0x6400000]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [1]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    MBR partition type: 0x27 (recognized)2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Active partition bit is set2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    OEM partition2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    DOS drive letter [D:]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume1]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Volume label: [System Reserved]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [75313152]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [2] -------2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [105906176 / 0x6500000]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [26736590848 / 0x639a00000]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [2]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    MBR partition type: 0x7 (recognized)2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    DOS drive letter [C:]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume2]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Volume label: [WIN7OS]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Volume flags = [0x90460]2014-06-02 22:17:13, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [16793251840]2014-06-02 22:17:13, Info                         PublishDiskInfoOnBlackboard: Serializing disk info...2014-06-02 22:17:13, Info                         GatherCapabilityParams: Can't tell if user is attempting cross-architecture install (image selection may not be done)2014-06-02 22:17:13, Info       [0x0606cc] IBS    GetSystemDiskNTPath: Found system disk at [\Device\Harddisk0\DR0].2014-06-02 22:17:13, Info       [0x0606cc] IBS    GetSystemDiskNumber: Disk [0] is the system disk.2014-06-02 22:17:13, Info                  IBS    IsDiskSupported:Checking if disk [0] has the necessary driver support.2014-06-02 22:17:13, Info                  IBS    IsDeviceSupported:Device description is [VBOX HARDDISK ATA Device]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [IDE\DiskVBOX_HARDDISK___________________________1.0_____]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [IDE\VBOX_HARDDISK___________________________1.0_____]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [IDE\DiskVBOX_HARDDISK___________________________]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [VBOX_HARDDISK___________________________1.0_____]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [GenDisk]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [GenDisk]2014-06-02 22:17:13, Info                  IBS    IsDeviceIDPresent:Found device ID [GenDisk] in hwcompat list2014-06-02 22:17:13, Info                  IBS    IsDeviceSupported:Device [VBOX HARDDISK ATA Device] is supported2014-06-02 22:17:13, Info                  IBS    IsDeviceSupported:Device description is [ATA Channel 0]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [Intel-2829]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [Internal_IDE_Channel]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [*PNP0600]2014-06-02 22:17:13, Info                  IBS    IsDeviceIDPresent:Found device ID [Internal_IDE_Channel] in hwcompat list2014-06-02 22:17:13, Info                  IBS    IsDeviceSupported:Device [ATA Channel 0] is supported2014-06-02 22:17:13, Info                  IBS    IsDeviceSupported:Device description is [Serial ATA Controller]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&SUBSYS_00000000&REV_02]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&SUBSYS_00000000]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&REV_02]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&CC_010601]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_2829&CC_0106]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_010601]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_0106]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_010601]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_0106]2014-06-02 22:17:13, Info                  IBS    IsDeviceIDPresent:Found device ID [PCI\CC_010601] in hwcompat list2014-06-02 22:17:13, Info                  IBS    IsDeviceSupported:Device [Serial ATA Controller] is supported2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI\PNP0A03]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0A03]2014-06-02 22:17:13, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0A03] in hwcompat list2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI_HAL\PNP0C08]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0C08]2014-06-02 22:17:13, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0C08] in hwcompat list2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      H/w    ID [acpiapic]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTEDInternal\ACPI_HAL]2014-06-02 22:17:13, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTED\ACPI_HAL]2014-06-02 22:17:13, Info                  IBS    IsDeviceIDPresent:Found device ID [acpiapic] in hwcompat list2014-06-02 22:17:13, Info                  IBS    DetermineDeviceSupport:Disk 0 has the necessary driver support2014-06-02 22:17:13, Info                         PublishDiskInfoOnBlackboard: Successfully serialized disk info.2014-06-02 22:17:13, Info                         Callback_GatherDiskInfo: Exit2014-06-02 22:17:13, Info                         PnPIBS: Exiting PnP callback to add drivers to the offline image ...2014-06-02 22:17:13, Info                  IBS    Callback_WinPE_SetSourceMediaInfo_Unattend:Trying to determine source path.2014-06-02 22:17:13, Info                  IBS    Callback_WinPE_SetSourceMediaInfo_Unattend:Not a media boot.2014-06-02 22:17:13, Info                  IBS    Callback_WinPE_SetSourceMediaInfo_Unattend:Setting source path to [H:\Sources].2014-06-02 22:17:13, Info       [0x0606cc] IBS    LogMediaDriveInfo: Media drive is of type Network (4)2014-06-02 22:17:13, Info                         Callback_SetWinPEAndOSImageInfoOnBB: Not running from downlevel; skipping check for WinPE image2014-06-02 22:17:13, Info                         SetOSImageInfoOnBB: Entry2014-06-02 22:17:13, Info                         SetOSImageInfoOnBB: Windows image file location is [H:\Sources\install.wim]2014-06-02 22:17:13, Info                  IBS    CollectInformationForImage: Size of 'H:\Sources\install.wim' is 39480156442014-06-02 22:17:13, Info                  IBS    CollectInformationForImage: Source image file 'H:\Sources\install.wim' has 9 sub-image(s)2014-06-02 22:17:13, Info                         CDepImageInfoSetCache::UpdateCachedInfoSet: Caching image info for [H:\Sources\install.wim]2014-06-02 22:17:13, Info                  IBS    CollectInformationForImage: Saved reference to image set container 'H:\Sources\install.wim'2014-06-02 22:17:13, Info                         SetOSImageInfoOnBB: Successfully collected information for Windows image file2014-06-02 22:17:13, Info                         Callback_SetWinPEAndOSImageInfoOnBB: Successfully collected WinPE and Windows image XML info.2014-06-02 22:17:13, Info                  IBS    Callback_WinPE_SetSourceMediaInfo_Unattend:Successfully published source media path.2014-06-02 22:17:13, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [Diagnostics] as processed.2014-06-02 22:17:13, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [ProductKey\ProductKey] as processed.2014-06-02 22:17:13, Info       [0x060114] IBS    Callback_Productkey_Validate_Unattend:User specified an unattend xml file.2014-06-02 22:17:13, Info       [0x060115] IBS    Callback_Productkey_Validate_Unattend:Using ProductKey WillShowUI value of [OnError]. Setting will not be used as product key UI page can no longer be displayed.  Retrieving key from unattend file...2014-06-02 22:17:13, Info                  IBS    Callback_Productkey_Validate_Unattend:Validating Product key.2014-06-02 22:17:13, Info       [0x060122] IBS    Callback_Productkey_Validate: Entry2014-06-02 22:17:13, Info       [0x060124] IBS    Callback_Productkey_Validate: Validating user supplied product key2014-06-02 22:17:24, Info       [0x060125] IBS    Callback_Productkey_Validate: Successfully validated product key2014-06-02 22:17:24, Info                  IBS    SetVolLicInfoOnBb: Product Key is not a Vol license key.2014-06-02 22:17:24, Info                  IBS    Callback_Productkey_Validate: EditionID for product key is Ultimate.2014-06-02 22:17:24, Info                  IBS    Callback_Productkey_Validate: EulaType (a.k.a. ChannelType) for product key is [Retail].2014-06-02 22:17:24, Info                  IBS    Canonicalized constraint key is 'NAME', value is 'Windows 7 ULTIMATE' 2014-06-02 22:17:24, Info                  IBS    ConstructOSImageConstraints: Setup is not in keyless mode.2014-06-02 22:17:24, Info                  IBS    ConstructOSImageConstraints: Setup is not using ei.cfg.2014-06-02 22:17:24, Info                         CDepImageInfoSetCache::GetCachedInfoSet: Found cached image info for [H:\Sources\install.wim]2014-06-02 22:17:24, Info                  IBS    DumpXmlInfoConstraints: Begin to dump XML info constraints for image selection2014-06-02 22:17:24, Info                  IBS    DumpXmlInfoConstraints: Constraint [0]; ElementPath = [EditionID]; ElementValue = [Ultimate]2014-06-02 22:17:24, Info                  IBS    DumpXmlInfoConstraints: Constraint [1]; ElementPath = [NAME]; ElementValue = [Windows 7 ULTIMATE]2014-06-02 22:17:24, Info                  IBS    DumpXmlInfoConstraints: End of dump.2014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=Starter, Flags=Starter : Returning Starter, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=HomeBasic, Flags=HomeBasic : Returning HomeBasic, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=HomePremium, Flags=HomePremium : Returning HomePremium, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=Professional, Flags=Professional : Returning Professional, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=Ultimate, Flags=Ultimate : Returning Ultimate, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=HomeBasic, Flags=HomeBasic : Returning HomeBasic, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=HomePremium, Flags=HomePremium : Returning HomePremium, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=Professional, Flags=Professional : Returning Professional, hr=0x02014-06-02 22:17:24, Info       [0x0606cc] IBS    CDepImageXMLInfo::GetEditionID:EditionID=Ultimate, Flags=Ultimate : Returning Ultimate, hr=0x02014-06-02 22:17:24, Info       [0x0603ee] IBS    CallBack_SelectImageOrShowUi: Multiple matching OS images found2014-06-02 22:17:24, Info                  IBS    Callback_Productkey_Validate: Found a matching image and gathered its info.2014-06-02 22:17:24, Info                  DIAG   CallBack_EditionID: Called with notification for ProductKey2014-06-02 22:17:24, Info                  DIAG   CallBack_EditionID: PID Range Part Number = X15-396442014-06-02 22:17:24, Info       [0x070040] DIAG   CallBack_EditionID: Obtaining Machine information2014-06-02 22:17:24, Info       [0x070029] DIAG   Win32_Processor : Failed to create IWbemLocator object. Error code = 0x800401542014-06-02 22:17:24, Info       [0x07005e] DIAG   HARDWARE CONFIG=Ram in KB: Total phys=3669560 avail phys=3122376 Procs=2 Arch=0 Family=2 Width=0 Speed=0 MHz 2014-06-02 22:17:24, Info       [0x07002d] DIAG   Logging MachineHardWare to BB2014-06-02 22:17:24, Info       [0x060536] IBS    Callback_License_LoadLicenseText: Couldn't find language information on blackboard2014-06-02 22:17:24, Info                  IBS    Callback_License_LoadLicenseText: Found license root at [H:\Sources\License]2014-06-02 22:17:24, Info       [0x060292] IBS    Callback_License_LoadLicenseText: Found EULA at [H:\Sources\License\_default\_default\Ultimate\license.rtf]; storing contents on blackboard...2014-06-02 22:17:24, Info       [0x060291] IBS    BbStoreFileContentsAsString: successfully opened [H:\Sources\License\_default\_default\Ultimate\license.rtf]2014-06-02 22:17:24, Info                  IBS    Callback_Productkey_Validate: Storing return code 0x0 on the blackboard.2014-06-02 22:17:24, Info       [0x060130] IBS    Callback_Productkey_Validate: Exit2014-06-02 22:17:24, Info       [0x060119] IBS    Callback_Productkey_Validate_Unattend:Product key provided is valid and image slection succeeded.2014-06-02 22:17:24, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [UserData\ComputerName] as processed.2014-06-02 22:17:24, Info       [0x060260] IBS    Callback_ComputerName_Unattend:UserName = user2014-06-02 22:17:24, Info       [0x060263] IBS    Callback_ComputerName_Unattend:Organization = user2014-06-02 22:17:24, Info       [0x060264] IBS    Callback_ComputerName_Unattend:ComputerName is * or was missing from unattend file; auto-generating a ComputerName2014-06-02 22:17:24, Info       [0x06025d] IBS    Callback_ComputerName_Validate:Computer name is USERUSE-2963NPS2014-06-02 22:17:24, Info       [0x06025a] IBS    Callback_ComputerName_Generate:Computer name [USERUSE-2963NPS] is valid.2014-06-02 22:17:24, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [SetupUI\SkipEula] as processed.2014-06-02 22:17:24, Info       [0x06029c] IBS    Callback_License_Unattend:User accepted the EULA in the unattend file.2014-06-02 22:17:24, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [PrepareDisks] as processed.2014-06-02 22:17:24, Info       [0x0603ce] IBS    CallBack_DiskConfiguration_ParseUnattend: Parsing unattend.xml's DiskConfiguration setting...2014-06-02 22:17:24, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [LangPacks] as processed.2014-06-02 22:17:24, Info       [0x060587] IBS    CallBack_LanguagePacks_Unattend:Processing unattend.2014-06-02 22:17:24, Info       [0x060588] IBS    CallBack_LanguagePacks_Unattend:Show UI value is [2]2014-06-02 22:17:24, Info       [0x060589] IBS    CallBack_LanguagePacks_Unattend:Setup language specified in the unattend file [en-US]2014-06-02 22:17:24, Info       [0x06058a] IBS    CallBack_LanguagePacks_Unattend:Target language specified in the unattend file [en-US]2014-06-02 22:17:24, Info       [0x060594] IBS    DetermineSetupLanguage:Validating setup language [en-US]2014-06-02 22:17:24, Info       [0x060595] IBS    DetermineSetupLanguage:Setting setup language to be [en-US]2014-06-02 22:17:24, Info       [0x06058c] IBS    CallBack_LanguagePacks_Unattend:Setup language is [en-US]2014-06-02 22:17:24, Info                  IBS    Callback_License_LoadLicenseText: Found license root at [H:\Sources\License]2014-06-02 22:17:24, Info       [0x060292] IBS    Callback_License_LoadLicenseText: Found EULA at [H:\Sources\License\_default\_default\Ultimate\license.rtf]; storing contents on blackboard...2014-06-02 22:17:24, Info       [0x060291] IBS    BbStoreFileContentsAsString: successfully opened [H:\Sources\License\_default\_default\Ultimate\license.rtf]2014-06-02 22:17:24, Info                  IBS    CallBack_LanguagePacks_Unattend: Successfully updated setup's resources to use the unattend selected language [en-US].2014-06-02 22:17:24, Info       [0x06059a] IBS    DetermineTargetLanguage:Validating target language [en-US]2014-06-02 22:17:24, Info       [0x06059c] IBS    DetermineTargetLanguage:Target language [en-US] is NOT a valid language2014-06-02 22:17:24, Info       [0x0605a4] IBS    CallBack_LanguagePacks_Unattend:Could not determine Target language. Will ask to show UI2014-06-02 22:17:24, Info                         PnPIBS: Entering PnP callback to validate unattend.xml settings for component Microsoft-Windows-PnPCustomizationsWinPE ...2014-06-02 22:17:24, Info                         PnPIBS: Reading driver paths from unattend.xml ...2014-06-02 22:17:24, Info                         PnPIBS: Finished reading driver paths from unattend.xml.2014-06-02 22:17:24, Info                         PnPIBS: Finished validating unattend.xml settings for component Microsoft-Windows-PnPCustomizationsWinPE.2014-06-02 22:17:24, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [SetupComplianceCheck] as processed.2014-06-02 22:17:24, Info                  IBS    Callback_Compliance_Unattend:User specified an unattend xml file.2014-06-02 22:17:24, Info                  IBS    Callback_Compliance_Unattend: The user specified a DisplayReport value of [2] in the unattend answer file.2014-06-02 22:17:24, Info                  IBS    Callback_Compliance_Unattend: Running in WinPE. Compliance checks do not execute, we do not need to read the DisplayReport value from the unattend file.2014-06-02 22:17:24, Info                  IBS    Callback_Compliance_Unattend:Setting ShowUI flag to [0]2014-06-02 22:17:24, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [RegionalSettings] as processed.2014-06-02 22:17:24, Info       [0x060583] IBS    SaveUnattendStringValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\SystemLocale] value is [en-US]2014-06-02 22:17:24, Info       [0x060584] IBS    SaveUnattendStringValueonBB:Successfully saved the value [en-US] value on black board.2014-06-02 22:17:24, Info       [0x060583] IBS    SaveUnattendStringValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\UserLocale] value is [en-US]2014-06-02 22:17:24, Info       [0x060584] IBS    SaveUnattendStringValueonBB:Successfully saved the value [en-US] value on black board.2014-06-02 22:17:24, Info       [0x060583] IBS    SaveUnattendStringValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\InputLocale] value is [0409:00000409]2014-06-02 22:17:24, Info       [0x060584] IBS    SaveUnattendStringValueonBB:Successfully saved the value [0409:00000409] value on black board.2014-06-02 22:17:24, Info       [0x0605f8] IBS    SaveUnattendDwordValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\LayeredDriver] value is [0]2014-06-02 22:17:24, Info       [0x0605f9] IBS    SaveUnattendDwordValueonBB:Successfully saved the value [0] value on black board.2014-06-02 22:17:24, Info       [0x0605fb] IBS    Callback_Locale_ProcessUnattendSettings: Layered Driver from downlevel system [1]2014-06-02 22:17:24, Info       [0x060572] IBS    Callback_Locale_SetSetupKeyboardLayout:Setup keyboard layout is [0409:00000409]2014-06-02 22:17:24, Info       [0x060581] IBS    SetSetupKeyboardLayout:Successfully set the key board layout to [0409:00000409]2014-06-02 22:17:24, Info       [0x060575] IBS    Callback_Locale_SetSetupKeyboardLayout:Successfully set the Setup keyboard layout to [0409:00000409]2014-06-02 22:17:24, Info       [0x0a018c] UI     Setup UI language is set to en-US.2014-06-02 22:17:24, Warning               UI     CLanguages::v_InitLanguage - Failed to load en-US resources with error 2. Will load fallback binaries2014-06-02 22:17:24, Info       [0x0a0031] UI     Initializing Page 2014-06-02 22:17:24, Info       [0x0a0032] UI     Initializing Page 2014-06-02 22:17:24, Info                  UI     Initializing Page 2014-06-02 22:17:24, Info                  UI     AppWindow has layout style 02014-06-02 22:17:24, Info                  UI     NavWindow has layout style 02014-06-02 22:17:24, Info       [0x0a017d] UI     User has specified the language thru command line. Language neutral selection UI won't be shown2014-06-02 22:17:24, Warning               UI     CLanguages::v_InitLanguage - Failed to load en-US resources with error 2. Will load fallback binaries2014-06-02 22:17:24, Info       [0x0a0035] UI     Allowing Page '' to be shown2014-06-02 22:17:24, Info       [0x0a011c] UI     WizardDialogPost::SetActive2014-06-02 22:17:50, Info                  IBS    Callback_DeployImage:Interrupting image application (if it has already started).2014-06-02 22:17:50, Info       [0x0a013d] UI     Accepting Cancel. Exiting Page Install Windows.2014-06-02 22:17:50, Info                  UI     Entering Page Cancel.2014-06-02 22:17:50, Info       [0x0a0035] UI     Allowing Page 'Install Windows' to be shown2014-06-02 22:17:50, Info       [0x0a0035] UI     Allowing Page 'Install Windows' to be shown2014-06-02 22:17:50, Info       [0x0a011c] UI     WizardDialogPost::SetActive2014-06-02 22:17:50, Info       [0x0a005a] UI     [UiStats] Writing resource ID counts2014-06-02 22:17:50, Info       [0x0a013d] UI     Accepting Cancel. Exiting Page Cancel.2014-06-02 22:17:50, Info       [0x0a013e] UI     Current and destination pages are the same. Aborting navigation.2014-06-02 22:17:50, Info       [0x0a0143] UI     User info collection time = 26 sec.2014-06-02 22:17:50, Info       [0x060285] IBS    Callback_Engine_PrepareForCancel:Preparation for cancel successful.2014-06-02 22:17:50, Info       [0x070042] DIAG   CallBack_DiagnosticDataSend: Called with notification for CancelSetup published by Engine2014-06-02 22:17:50, Warning    [0x070041] DIAG   DiagnosticDataSendWorker: invalid arguments2014-06-02 22:17:50, Warning               DIAG   CallBack_DiagnosticDataSend: DiagnosticDataSendWorker failed, hresult=0x800700572014-06-02 22:17:50, Info                  IBS    Callback_CleanupSensitiveBBData: Replacing entries under blackboard; entering new OS.2014-06-02 22:17:50, Info                  IBS    Callback_CleanupSensitiveBBData: Finished clearing data; 0 items cleared.2014-06-02 22:17:50, Info                  IBS    LockUnlockSourceMedia:No need to Unlock the source media drive.2014-06-02 22:17:50, Info       [0x090093] PANTHR WdsEnableExit called!  When group #110 is empty, execution will stop, and the queue won't be saved.2014-06-02 22:17:50, Info       [0x09008e] PANTHR SeqExecute -- stopping, since termination group reached2014-06-02 22:17:50, Info       [0x090086] PANTHR pWorkerThreadFunc -- Stopping2014-06-02 22:17:50, Info       [0x090086] PANTHR pWorkerThreadFunc -- Stopping2014-06-02 22:17:50, Info       [0x090086] PANTHR pWorkerThreadFunc -- Stopping2014-06-02 22:17:50, Info                  PANTHR DeleteCriticalSection for pExecQueue->csLock;2014-06-02 22:17:50, Info                         CryptoSetup module terminated2014-06-02 22:17:50, Info       [0x0605a6] IBS    Requested UI to hide the language and locale selection pages.2014-06-02 22:17:50, Info       [0x06010d] IBS    Module_Term_Productkey: Valid product key in blackboard, show property set to hide.2014-06-02 22:17:50, Info                  UI     CallbackWin32UITerminate: Deleted WizardUI2014-06-02 22:17:50, Info       [0x090081] PANTHR Destroying any unreferenced modules! (SEQ6)2014-06-02 22:17:50, Info       [0x0601d9] IBS    InstallWindows:User cancelled Setup
Edited by invader7
Link to comment
Share on other sites

I do not know wht the "numbers" mean, however I can assure you just adding that folder will do no good.

http://technet.microsoft.com/en-us/library/cc766191%28v=ws.10%29.aspx

http://www.lingoes.net/en/translator/langcode.htm

The folder can't just be "populated". Your original XML had this

<!--This answer file generated by RT Seven Lite-->
This progam is no longer maintained and we have no clue what your DVD (ISO/FlatFiles?) is but, rest assured it's Greek-Only. Take a look at the contents of that folder. In order to use Multi-Language, the MUI needs to be inserted.

Here is more info on add/remove languages -

http://technet.microsoft.com/en-gb/library/dd799306%28v=ws.10%29.aspx

 

Here's a bit of info (scroll down to post #73) that -appears- to explain a bit about "the number".

http://forums.mydigitallife.info/threads/12145-HowTo-create-a-multi-language-Windows-7-DVD-installer/page8

Notice that MSFN doesn't endorse links to said forum but sometimes reference it for information-only. Also go to the first post.

 

Bottom line, change the XML to read "el-GR" and put the original LANG.INI back and remove the "en-US" folder until you actually HAVE the English Launguage Pack inserted/integrated, otherwise pointless. (And seeing the RT7Lite thingy makes it seem a bit "fishy".)

 

HTH

 

Addendum - Guess we should have asked the Language or Volume Label. Also, there are legit links to individual language (single language only) ISO files.

Link to comment
Share on other sites

I do not know wht the "numbers" mean, however I can assure you just adding that folder will do no good.

http://technet.microsoft.com/en-us/library/cc766191%28v=ws.10%29.aspx

http://www.lingoes.net/en/translator/langcode.htm

The folder can't just be "populated". Your original XML had this

<!--This answer file generated by RT Seven Lite-->
This progam is no longer maintained and we have no clue what your DVD (ISO/FlatFiles?) is but, rest assured it's Greek-Only. Take a look at the contents of that folder. In order to use Multi-Language, the MUI needs to be inserted.

Here is more info on add/remove languages -

http://technet.microsoft.com/en-gb/library/dd799306%28v=ws.10%29.aspx

 

Here's a bit of info (scroll down to post #73) that -appears- to explain a bit about "the number".

http://forums.mydigitallife.info/threads/12145-HowTo-create-a-multi-language-Windows-7-DVD-installer/page8

Notice that MSFN doesn't endorse links to said forum but sometimes reference it for information-only. Also go to the first post.

 

Bottom line, change the XML to read "el-GR" and put the original LANG.INI back and remove the "en-US" folder until you actually HAVE the English Launguage Pack inserted/integrated, otherwise pointless. (And seeing the RT7Lite thingy makes it seem a bit "fishy".)

 

HTH

 

Addendum - Guess we should have asked the Language or Volume Label. Also, there are legit links to individual language (single language only) ISO files.

 

 

My DVD is EL/EN (x86/x64) AIO. So it already has the 2 languages inside the WIM (i assume).

 

I managed to make it work only by editing my lang.ini and it now looks like:

[Available UI Languages]el-GR = 3en-US = 3[Fallback Languages]el-GR = en-usen-US = el-GR

I understood what the numbers mean because of your reply (thanks!) and removed the "en-US" folder.

 

Now it seems everything to work right ! I can install EL and EN machines without the need to "choose" the language with a UI.

 

My "last" ? question is how to automate the OS selection , after the language UI , it asks me which architecture to install , for example if my answer file is for Ultimate , it asks me about x64 or x86.

 

I found that with ei.cfg i can choose the edition (not needed for me now) , but how can i choose the architecture?

 

Thanks !!

Link to comment
Share on other sites

Hmmm...

My DVD is EL/EN (x86/x64) AIO. So it already has the 2 languages inside the WIM (i assume).
Um, sorry, but if you have an AIO, then you either made it yourself (which is fine ;) ) or you downloaded a torrent (warez :ph34r: ). IOW, if -you- made it then you should understand "how it works". Indeed, AFAIK, there are NO x86/x64 -legal- AIO's, so... this conversation stops right here. :no:
Link to comment
Share on other sites

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...