psimon87
Goto Top

Unattended.xml wird nicht erkannt

Hallo,

liebes Forum. Nachdem ich mit meinen Kenntnissen und Ideen jetzt am Ende bin wende ich mich an euch face-smile

Ich habe einen Windows Server 2016 (aktuell noch eine Testversion - solange nicht alles so läuft wie ich will, will ich keine Lizenz kaufen) laufen auf der unter anderem auch der Bereitstellungsdienst läuft.

Es klappt soweit ich auch alles, das Image wird geladen und auch die Installation klappt (auch schon mit einem aufgezeichneten Image). Allerdings habe ich ein riesen Problem mit der unattended.xml

Diese wird einfach nicht erkannt. Es geht dabei um die Installation von Windows 10 in der Version 1703 (vielleicht ist das das Problem).

Es fängt schon damit an, dass beim Setup die Sprachauswahl kommt - alleine diese sollte schon automatisch gewählt werden.

Hat jemand vielleicht eine Idee an was es liegen könnte. In den Einstellungen des WDS ist die Datei gesetzt. Habe beide Einstellungen einzeln versucht und auch zusammen. Bringt alles keinen Erfolg.

Anbei die Screenshots der Einstellungen und die Datei

<?xml version="1.0" ?>   
<unattend xmlns="urn:schemas-microsoft-com:unattend">  
   <settings pass="windowsPE">  
      <component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35"   
language="neutral" versionScope="nonSxS" processorArchitecture="x86">  
         <WindowsDeploymentServices>
            <Login>
               <WillShowUI>OnError</WillShowUI>
               <Credentials>
                     <Username>PSIMON\Administrator</Username>
                     <Domain>intern.psimon.at</Domain>
                     <Password>xxx</Password>
                  </Credentials>
               </Login>
            <ImageSelection>
               <WillShowUI>OnError</WillShowUI>
               <InstallImage>
                  <ImageName>Windows 10 x64 Stand 1.8.2017</ImageName>
                  <ImageGroup>Client OS</ImageGroup>
                  <Filename>Windows_10_x64_Stand_1_8_2017.wim</Filename>
               </InstallImage>
                  <InstallTo>
                  <DiskID>0</DiskID>
                  <PartitionID>4</PartitionID>
               </InstallTo>
            </ImageSelection>
         </WindowsDeploymentServices>
         <DiskConfiguration>
                <Disk>
                    <CreatePartitions>
                        <CreatePartition>
                            <Order>2</Order>
                            <Size>100</Size>
                            <Type>EFI</Type>
                        </CreatePartition>
                        <CreatePartition>
                            <Order>4</Order>
                            <Type>Primary</Type>
                        </CreatePartition>
                        <CreatePartition>
                            <Order>3</Order>
                            <Size>128</Size>
                            <Type>MSR</Type>
                        </CreatePartition>
                        <CreatePartition>
                            <Order>1</Order>
                            <Size>250</Size>
                            <Type>Primary</Type>
                        </CreatePartition>
                    </CreatePartitions>
                    <ModifyPartitions>
                        <ModifyPartition>
                            <PartitionID>2</PartitionID>
                            <Order>2</Order>
                            <Label>System</Label>
                            <Format>FAT32</Format>
                        </ModifyPartition>
                        <ModifyPartition>
                            <Format>NTFS</Format>
                            <Label>Windows</Label>
                            <Order>4</Order>
                            <PartitionID>4</PartitionID>
                            <Letter>C</Letter>
                            <Extend>true</Extend>
                        </ModifyPartition>
                        <ModifyPartition>
                            <Order>1</Order>
                            <PartitionID>1</PartitionID>
                            <Format>NTFS</Format>
                            <Label>Recovery</Label>
                            <TypeID>de94bba4-06d1-4d40-a16a-bfd50179d6ac</TypeID>
                        </ModifyPartition>
                    </ModifyPartitions>
                    <DiskID>0</DiskID>
                    <WillWipeDisk>true</WillWipeDisk>
                </Disk>
                <DisableEncryptedDiskProvisioning>false</DisableEncryptedDiskProvisioning>
                <WillShowUI>OnError</WillShowUI>
            </DiskConfiguration>
      </component>
      <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35"   
language="neutral" versionScope="nonSxS" processorArchitecture="x86">  
         <SetupUILanguage>
            <WillShowUI>OnError</WillShowUI>
            <UILanguage>de-DE</UILanguage>
         </SetupUILanguage>
         <UILanguage>de-DE</UILanguage>
      </component>
   </settings>
</unattend>
unbenannt2
unbenannt

Content-Key: 345293

Url: https://administrator.de/contentid/345293

Printed on: April 16, 2024 at 15:04 o'clock

Mitglied: 133883
133883 Aug 03, 2017 updated at 09:14:13 (UTC)
Goto Top
Es fängt schon damit an, dass beim Setup die Sprachauswahl kommt - alleine diese sollte schon automatisch gewählt werden.
processorArchitecture="x86"
Kein Wunder wenn du die Sprache in Zeile 82 für die x86-Architektur anstatt für AMD64/x64 festgelegst :-P

Gruß
Member: psimon87
psimon87 Aug 03, 2017 updated at 09:37:53 (UTC)
Goto Top
Danke für den Hinweis face-smile aber Sorry, war die Falsche Datei face-sad

Das ist jetzt der richtige Code

<?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>de-DE</UILanguage>
            </SetupUILanguage>
            <InputLocale>de-DE</InputLocale>
            <SystemLocale>de-DE</SystemLocale>
            <UILanguage>de-DE</UILanguage>
            <UILanguageFallback>en-US</UILanguageFallback>
            <UserLocale>de-DE</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>
                <Disk wcm:action="add">  
                    <CreatePartitions>
                        <CreatePartition wcm:action="add">  
                            <Order>2</Order>
                            <Size>100</Size>
                            <Type>EFI</Type>
                        </CreatePartition>
                        <CreatePartition wcm:action="add">  
                            <Order>4</Order>
                            <Type>Primary</Type>
                        </CreatePartition>
                        <CreatePartition wcm:action="add">  
                            <Order>3</Order>
                            <Size>128</Size>
                            <Type>MSR</Type>
                        </CreatePartition>
                        <CreatePartition wcm:action="add">  
                            <Order>1</Order>
                            <Size>250</Size>
                            <Type>Primary</Type>
                        </CreatePartition>
                    </CreatePartitions>
                    <ModifyPartitions>
                        <ModifyPartition wcm:action="add">  
                            <PartitionID>2</PartitionID>
                            <Order>2</Order>
                            <Label>System</Label>
                            <Format>FAT32</Format>
                        </ModifyPartition>
                        <ModifyPartition wcm:action="add">  
                            <Format>NTFS</Format>
                            <Label>Windows</Label>
                            <Order>4</Order>
                            <PartitionID>4</PartitionID>
                            <Letter>C</Letter>
                            <Extend>true</Extend>
                        </ModifyPartition>
                        <ModifyPartition wcm:action="add">  
                            <Order>1</Order>
                            <PartitionID>1</PartitionID>
                            <Format>NTFS</Format>
                            <Label>Recovery</Label>
                            <TypeID>de94bba4-06d1-4d40-a16a-bfd50179d6ac</TypeID>
                        </ModifyPartition>
                    </ModifyPartitions>
                    <DiskID>0</DiskID>
                    <WillWipeDisk>true</WillWipeDisk>
                </Disk>
                <DisableEncryptedDiskProvisioning>false</DisableEncryptedDiskProvisioning>
                <WillShowUI>OnError</WillShowUI>
            </DiskConfiguration>
            <EnableFirewall>true</EnableFirewall>
            <EnableNetwork>true</EnableNetwork>
            <Restart>Restart</Restart>
            <ImageInstall>
                <OSImage>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>4</PartitionID>
                    </InstallTo>
                </OSImage>
            </ImageInstall>
            <UserData>
                <ProductKey>
                    <Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
                    <WillShowUI>Never</WillShowUI>
                </ProductKey>
                <AcceptEula>true</AcceptEula>
                <FullName>Patrick Simon</FullName>
                <Organization>Privat</Organization>
            </UserData>
            <WindowsDeploymentServices>
                <Login>
                    <Credentials>
                        <Domain>INTERN.PSIMON.AT</Domain>
                        <Password>xxx</Password>
                        <Username>PSIMON\Administrator</Username>
                    </Credentials>
                </Login>
            </WindowsDeploymentServices>
        </component>
    </settings>
    <settings pass="specialize">  
        <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>de-De</InputLocale>
            <SystemLocale>de-DE</SystemLocale>
            <UILanguage>de-DE</UILanguage>
            <UserLocale>de-DE</UserLocale>
            <UILanguageFallback>en-US</UILanguageFallback>
        </component>
        <component name="Microsoft-Windows-UnattendedJoin" 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">  
            <Identification>
                <Credentials>
                    <Domain>INTERN.PSIMON.AT</Domain>
                    <Password>xxx</Password>
                    <Username>PSIMON\Administrator</Username>
                </Credentials>
                <JoinDomain>INTERN.PSIMON.AT</JoinDomain>
                <TimeoutPeriodInMinutes>1</TimeoutPeriodInMinutes>
            </Identification>
        </component>
    </settings>
    <settings pass="oobeSystem">  
        <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
            <InputLocale>de-De</InputLocale>
            <SystemLocale>de-DE</SystemLocale>
            <UILanguage>de-DE</UILanguage>
            <UserLocale>de-DE</UserLocale>
            <UILanguageFallback>en-US</UILanguageFallback>
        </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">  
            <AutoLogon>
                <Password>
                    <Value>SQBmAGoAVABtAGQAVQAzAGkAZABBAF8AYQBkAG0AaQBuAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                    <PlainText>false</PlainText>
                </Password>
                <Username>Administrator</Username>
                <Enabled>false</Enabled>
            </AutoLogon>
            <OOBE>
                <VMModeOptimizations>
                    <SkipAdministratorProfileRemoval>true</SkipAdministratorProfileRemoval>
                    <SkipNotifyUILanguageChange>true</SkipNotifyUILanguageChange>
                    <SkipWinREInitialization>true</SkipWinREInitialization>
                </VMModeOptimizations>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <UnattendEnableRetailDemo>true</UnattendEnableRetailDemo>
            </OOBE>
            <RegisteredOrganization>Patrick Simon</RegisteredOrganization>
            <RegisteredOwner>Patrick Simon</RegisteredOwner>
            <UserAccounts>
                <AdministratorPassword>
                    <Value>SQBmAGoAVABtAGQAVQAzAGkAZABBAF8AYQBkAG0AaQBuAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>
                    <PlainText>false</PlainText>
                </AdministratorPassword>
            </UserAccounts>
        </component>
    </settings>
    <settings pass="offlineServicing">  
        <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">  
            <OfflineUserAccounts>
                <OfflineAdministratorPassword>
                    <Value>SQBmAGoAVABtAGQAVQAzAGkAZABBAF8AYQBkAG0AaQBuAE8AZgBmAGwAaQBuAGUAQQBkAG0AaQBuAGkAcwB0AHIAYQB0AG8AcgBQAGEAcwBzAHcAbwByAGQA</Value>
                    <PlainText>false</PlainText>
                </OfflineAdministratorPassword>
            </OfflineUserAccounts>
            <RegisteredOwner>Patrick Simon</RegisteredOwner>
            <RegisteredOrganization>Privat</RegisteredOrganization>
            <ComputerName>PRIVAT-%Serial%</ComputerName>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:\\privat-ws2016dc\f\win10_1703_deutsch_x64\sources\install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />  
</unattend>
Mitglied: 133883
133883 Aug 03, 2017 updated at 10:09:29 (UTC)
Goto Top
Member: psimon87
psimon87 Aug 03, 2017 updated at 10:50:26 (UTC)
Goto Top
Okay jetzt geb ich es glaub ich gleich auf - da sind ja nur Errors drin face-sad - ich habe die Datei aber Extra mit dem Windows System Image Manager erstellen lassen)

setuperr.log
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:34:02, Error      [0x0606cc] IBS    <DiskConfiguration>: Neither Extend nor Size were specified for CreatePartition for disk 0; exactly one of these settings must be present. If only <Extend> is present it should be specified as TRUE.[gle=0x00000057]
2017-08-03 12:34:02, Error      [0x0606cc] IBS    <DiskConfiguration>: the unattend file contains invalid data (see the disk entry with index 0)[gle=0x00000057]
2017-08-03 12:34:02, Error      [0x0606cc] IBS    UnattendProcessDiskConfigInfo: An error was found in the provided unattend file; hrResult = 0x80300007[gle=0x00000057]
2017-08-03 12:34:02, Error      [0x064124] IBSLIB Credential\Domain should not be specified if Credential\Username already specifies Domain
2017-08-03 12:34:02, Error      [0x0b0048] WDS    CallBack_WdsClient_Unattend: Error processing unattended login. Error [0x80004005]
2017-08-03 12:34:02, Error      [0x0b004a] WDS    CallBack_WdsClient_Unattend: Error in processing WdsClient unattend settings. Error [0x80004005]

setupact.log
2017-08-03 12:33:44, Info                  IBS    InstallWindows:Successfully loaded resource language [de-de]
2017-08-03 12:33:44, Info       [0x0601c1] IBS    InstallWindows:Install Path = X:\Sources
2017-08-03 12:33:44, Info       [0x0601c2] IBS    InstallWindows:Setup Phase = 2
2017-08-03 12:33:44, Info       [0x0606cc] IBS    LogBootDeviceInfo:The firmware boot device ARC path is [ramdisk(0)] and NT path is [\Device\Ramdisk{d9b257fc-684e-4dcb-ab79-03cfa2f6b750}].
2017-08-03 12:33:44, Info       [0x0606cc] IBS    LogBootDeviceInfo:The system boot device ARC path is [ramdisk(0)] and NT path is [\Device\Ramdisk{d9b257fc-684e-4dcb-ab79-03cfa2f6b750}].
2017-08-03 12:33:44, Info       [0x0601e9] IBS    CheckWinPEVersion:Compatible WinPE Version 10.0.15063 sp 0.0
2017-08-03 12:33:44, Info       [0x0601c9] IBS    InstallWindows:Starting a new install from WinPE
2017-08-03 12:33:44, Info                  IBS    InstallWindows: Setup working directory = X:\WINDOWS\panther
2017-08-03 12:33:44, Info       [0x0601ce] IBS    Setup has started phase 2 at 2017-08-03 12:33:44
2017-08-03 12:33:44, Info       [0x0601cf] IBS    Install source is X:\Sources
2017-08-03 12:33:44, Info       [0x0601d0] IBS    Build version is 10.0.15063.0 (WinBuild.160101.0800)
2017-08-03 12:33:44, Info       [0x06403f] IBSLIB CreateSetupBlackboard:Creating a new persistent blackboard. Path is [X:\WINDOWS\panther\SetupInfo] Setup phase is [2]
2017-08-03 12:33:44, Info       [0x090008] PANTHR CBlackboard::Open: X:\WINDOWS\panther\SetupInfo succeeded.
2017-08-03 12:33:44, Info       [0x064043] IBSLIB CreateSetupBlackboard:Successfully created/opened Setup black board path is [X:\WINDOWS\panther\SetupInfo]
2017-08-03 12:33:44, Info                  IBS    InstallWindows:No UI language from a previous boot was found on the blackboard. Using selected language [de-de].
2017-08-03 12:33:44, Info                  IBS    InstallWindows:Setup architecture is [x64]
2017-08-03 12:33:44, Info       [0x0601d5] IBS    InstallWindows:Starting with Empty Queue. Setup Phase = 2
2017-08-03 12:33:44, Info                  PANTHR InitializedCriticalSection for pExecQueue->csLock;
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ScenarioDetect in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Engine in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Internal in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ErrorHandler in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Diagnostic in diagnostic.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Unattend in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ParseCommandLine in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Ems  in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module PrepareInstallDrive in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module TempDrive in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CopySetupFiles in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module BootPrep in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module BootEntries in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CopyPrivates in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ProductKey in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ComputerName in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module License in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DiskInformation in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module FixBBPaths in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DiskConfig in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CreatePageFile in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Imaging in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CopyImages in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DeployImages in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module DiskSpace in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Completion in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module MountDev in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Cmi in cmisetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module SystemRestore in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module FirstBootCleanup in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module RestartModule in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ExternalDrivers in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CBS in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module SkuAssembly in cmisetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module LanguagePack in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module ConfigSet in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module UnattendImgInstall in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module CFGOfflineImage in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info                         PnPIBS: Initializing the PnP IBS Module ...

2017-08-03 12:33:44, Info                         PnPIBS: Successfully initialized the PnP IBS Module.

2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module PnP IBS module in pnpibs.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Compliance in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Rollback in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Locale in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Source media module in winsetup.dll
2017-08-03 12:33:44, Info       [0x060359] IBS    Callback_ScenarioDetect:Setup is starting from [2] phase 
2017-08-03 12:33:44, Info                  IBS    Callback_BootEnvironmentDetect:FirmwareType 2.
2017-08-03 12:33:44, Info                  IBS    Callback_BootEnvironmentDetect: Detected boot environment: EFI
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WinPEUI in win32ui.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WinPEProgress in spprgrss.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WinPEUpgLoader in upgloader.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WdsClient in wdsclient.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module WpeUntndBtstrp in winsetup.dll
2017-08-03 12:33:44, Info                  PANTHR InitializeModule: Initializing ExecQueue->csLock;
2017-08-03 12:33:44, Info       [0x0601a4] IBS    LoadWorkerModules:Successfully added worker module Cryptography in cryptosetup.dll
2017-08-03 12:33:44, Info       [0x060004] IBS    Callback_UpdateDrivePathsOnBB:No need to update the blackboard paths.
2017-08-03 12:33:44, Info                  IBS    Callback_Engine_StartupScenarioIsWinPE:Setup is running from RAM drive. Path is [X:\Sources]
2017-08-03 12:33:44, Info                  IBS    LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwcompat.txt]
2017-08-03 12:33:44, Info                  IBS    LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwexclude.txt]
2017-08-03 12:33:44, Info                  IBS    Callback_Compliance_LoadDeviceCompatDB:Count of Device IDs is [28426], count of exclusions is [62]
2017-08-03 12:33:44, Info                  IBS    EnumOnlineDriverStoreForInjectedDriverPackages:Enumerating online driver store for injected driver packages.
2017-08-03 12:33:44, Info                  IBS    EnumOnlineDriverStoreForInjectedDriverPackages:Enumerated online driver store. Return code is [0x0]
2017-08-03 12:33:44, Info       [0x070035] DIAG   CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2017-08-03 12:33:44, Info       [0x07003b] DIAG   CallBack_DiagnosticDataGeneration: Starting Timer as we are starting new phase
2017-08-03 12:33:44, Info       [0x0b0022] WDS    StartNetworking: Trying to start networking.
2017-08-03 12:33:44, Info                  WDS    Network service dhcp not running or could not be queried: c4f06a70 1 1
2017-08-03 12:33:44, Info                  WDS    Network service lmhosts not running or could not be queried: c4f06830 1 1
2017-08-03 12:33:44, Info                  WDS    Network service lanmanworkstation not running or could not be queried: c4f06d70 1 1
2017-08-03 12:33:44, Info                  WDS    Network service bfe not running or could not be queried: c4f06b90 1 1
2017-08-03 12:33:44, Info                  WDS    Network service ikeext not running or could not be queried: c4f06980 1 1
2017-08-03 12:33:44, Info                  WDS    Network service mpssvc not running or could not be queried: c4f06830 1 1
2017-08-03 12:33:45, Info                  WDS    Installing device pci\ven_8086&dev_1502 X:\WINDOWS\INF\net1ic64.inf succeeded
2017-08-03 12:33:45, Info                  WDS    No computer name specified, generating a random name.
2017-08-03 12:33:45, Info                  WDS    Renaming computer to MININT-2U5BKBU.
2017-08-03 12:33:45, Info                  WDS    Waiting on the profiling mutex handle
2017-08-03 12:33:45, Info                  WDS    Acquired profiling mutex
2017-08-03 12:33:45, Info                  WDS    Service winmgmt disable: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service winmgmt stop: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service winmgmt enable: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Released profiling mutex
2017-08-03 12:33:45, Info                  WDS    Global handle for profiling mutex is non-null
2017-08-03 12:33:45, Info                  WDS    Waiting on the profiling mutex handle
2017-08-03 12:33:45, Info                  WDS    Acquired profiling mutex
2017-08-03 12:33:45, Info                  WDS    Service dhcp start: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service lmhosts start: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service ikeext start: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service mpssvc start: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service NetBIOS start: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service LanmanWorkstation start: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Service mrxsmb10 start: 0x00000000
2017-08-03 12:33:45, Info                  WDS    Released profiling mutex
2017-08-03 12:33:45, Info                  WDS    Spent 296ms installing network components
2017-08-03 12:33:46, Info                  WDS    Spent 485ms installing network drivers
2017-08-03 12:33:46, Info                  WDS    Installed 0 network driver(s)
2017-08-03 12:33:46, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:46, Info                  WDS    Friendly name:      [Ethernet]
2017-08-03 12:33:46, Info                  WDS    Operational Status: 2; IfOperStatusDown
2017-08-03 12:33:46, Info                  WDS    Type:               6; IF_TYPE_ETHERNET_CSMACD
2017-08-03 12:33:46, Info                  WDS    Flags:              453
2017-08-03 12:33:46, Info                  WDS    MTU:                1500
2017-08-03 12:33:46, Info                  WDS    UNICAST:
2017-08-03 12:33:46, Info                  WDS          [fe80::a592:ba6:8c70:d01f%3]
2017-08-03 12:33:46, Info                  WDS    ANYCAST:
2017-08-03 12:33:46, Info                  WDS    MULTICAST:
2017-08-03 12:33:46, Info                  WDS          [ff01::1%3]
2017-08-03 12:33:46, Info                  WDS          [ff02::1%3]
2017-08-03 12:33:46, Info                  WDS          [ff02::1:ff70:d01f%3]
2017-08-03 12:33:46, Info                  WDS          [224.0.0.1]
2017-08-03 12:33:46, Info                  WDS    DNS:
2017-08-03 12:33:46, Info                  WDS          [fec0:0:0:ffff::1%1]
2017-08-03 12:33:46, Info                  WDS          [fec0:0:0:ffff::2%1]
2017-08-03 12:33:46, Info                  WDS          [fec0:0:0:ffff::3%1]
2017-08-03 12:33:46, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:46, Info                  WDS    Friendly name:      [Loopback Pseudo-Interface 1]
2017-08-03 12:33:46, Info                  WDS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:46, Info                  WDS    Type:               24; IF_TYPE_SOFTWARE_LOOPBACK
2017-08-03 12:33:46, Info                  WDS    Flags:              384
2017-08-03 12:33:46, Info                  WDS    MTU:                4294967295
2017-08-03 12:33:46, Info                  WDS    UNICAST:
2017-08-03 12:33:46, Info                  WDS          [::1]
2017-08-03 12:33:46, Info                  WDS          [127.0.0.1]
2017-08-03 12:33:46, Info                  WDS    ANYCAST:
2017-08-03 12:33:46, Info                  WDS    MULTICAST:
2017-08-03 12:33:46, Info                  WDS    DNS:
2017-08-03 12:33:47, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:47, Info                  WDS    Friendly name:      [Ethernet]
2017-08-03 12:33:47, Info                  WDS    Operational Status: 2; IfOperStatusDown
2017-08-03 12:33:47, Info                  WDS    Type:               6; IF_TYPE_ETHERNET_CSMACD
2017-08-03 12:33:47, Info                  WDS    Flags:              453
2017-08-03 12:33:47, Info                  WDS    MTU:                1500
2017-08-03 12:33:47, Info                  WDS    UNICAST:
2017-08-03 12:33:47, Info                  WDS          [fe80::a592:ba6:8c70:d01f%3]
2017-08-03 12:33:47, Info                  WDS    ANYCAST:
2017-08-03 12:33:47, Info                  WDS    MULTICAST:
2017-08-03 12:33:47, Info                  WDS          [ff01::1%3]
2017-08-03 12:33:47, Info                  WDS          [ff02::1%3]
2017-08-03 12:33:47, Info                  WDS          [ff02::1:ff70:d01f%3]
2017-08-03 12:33:47, Info                  WDS          [224.0.0.1]
2017-08-03 12:33:47, Info                  WDS    DNS:
2017-08-03 12:33:47, Info                  WDS          [fec0:0:0:ffff::1%1]
2017-08-03 12:33:47, Info                  WDS          [fec0:0:0:ffff::2%1]
2017-08-03 12:33:47, Info                  WDS          [fec0:0:0:ffff::3%1]
2017-08-03 12:33:47, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:47, Info                  WDS    Friendly name:      [Loopback Pseudo-Interface 1]
2017-08-03 12:33:47, Info                  WDS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:47, Info                  WDS    Type:               24; IF_TYPE_SOFTWARE_LOOPBACK
2017-08-03 12:33:47, Info                  WDS    Flags:              384
2017-08-03 12:33:47, Info                  WDS    MTU:                4294967295
2017-08-03 12:33:47, Info                  WDS    UNICAST:
2017-08-03 12:33:47, Info                  WDS          [::1]
2017-08-03 12:33:47, Info                  WDS          [127.0.0.1]
2017-08-03 12:33:47, Info                  WDS    ANYCAST:
2017-08-03 12:33:47, Info                  WDS    MULTICAST:
2017-08-03 12:33:47, Info                  WDS    DNS:
2017-08-03 12:33:48, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:48, Info                  WDS    Friendly name:      [Ethernet]
2017-08-03 12:33:48, Info                  WDS    Operational Status: 2; IfOperStatusDown
2017-08-03 12:33:48, Info                  WDS    Type:               6; IF_TYPE_ETHERNET_CSMACD
2017-08-03 12:33:48, Info                  WDS    Flags:              453
2017-08-03 12:33:48, Info                  WDS    MTU:                1500
2017-08-03 12:33:48, Info                  WDS    UNICAST:
2017-08-03 12:33:48, Info                  WDS          [fe80::a592:ba6:8c70:d01f%3]
2017-08-03 12:33:48, Info                  WDS    ANYCAST:
2017-08-03 12:33:48, Info                  WDS    MULTICAST:
2017-08-03 12:33:48, Info                  WDS          [ff01::1%3]
2017-08-03 12:33:48, Info                  WDS          [ff02::1%3]
2017-08-03 12:33:48, Info                  WDS          [ff02::1:ff70:d01f%3]
2017-08-03 12:33:48, Info                  WDS          [224.0.0.1]
2017-08-03 12:33:48, Info                  WDS    DNS:
2017-08-03 12:33:48, Info                  WDS          [fec0:0:0:ffff::1%1]
2017-08-03 12:33:48, Info                  WDS          [fec0:0:0:ffff::2%1]
2017-08-03 12:33:48, Info                  WDS          [fec0:0:0:ffff::3%1]
2017-08-03 12:33:48, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:48, Info                  WDS    Friendly name:      [Loopback Pseudo-Interface 1]
2017-08-03 12:33:48, Info                  WDS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:48, Info                  WDS    Type:               24; IF_TYPE_SOFTWARE_LOOPBACK
2017-08-03 12:33:48, Info                  WDS    Flags:              384
2017-08-03 12:33:48, Info                  WDS    MTU:                4294967295
2017-08-03 12:33:48, Info                  WDS    UNICAST:
2017-08-03 12:33:48, Info                  WDS          [::1]
2017-08-03 12:33:48, Info                  WDS          [127.0.0.1]
2017-08-03 12:33:48, Info                  WDS    ANYCAST:
2017-08-03 12:33:48, Info                  WDS    MULTICAST:
2017-08-03 12:33:48, Info                  WDS    DNS:
2017-08-03 12:33:49, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:49, Info                  WDS    Friendly name:      [Ethernet]
2017-08-03 12:33:49, Info                  WDS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:49, Info                  WDS    Type:               6; IF_TYPE_ETHERNET_CSMACD
2017-08-03 12:33:49, Info                  WDS    Flags:              453
2017-08-03 12:33:49, Info                  WDS    MTU:                1500
2017-08-03 12:33:49, Info                  WDS    UNICAST:
2017-08-03 12:33:49, Info                  WDS          [fe80::a592:ba6:8c70:d01f%3]
2017-08-03 12:33:49, Info                  WDS          [192.168.123.14]
2017-08-03 12:33:49, Info                  WDS    ANYCAST:
2017-08-03 12:33:49, Info                  WDS    MULTICAST:
2017-08-03 12:33:49, Info                  WDS          [ff01::1%3]
2017-08-03 12:33:49, Info                  WDS          [ff02::1%3]
2017-08-03 12:33:49, Info                  WDS          [ff02::1:ff70:d01f%3]
2017-08-03 12:33:49, Info                  WDS          [224.0.0.1]
2017-08-03 12:33:49, Info                  WDS    DNS:
2017-08-03 12:33:49, Info                  WDS          [192.168.123.2]
2017-08-03 12:33:49, Info                  WDS          [8.8.8.8]
2017-08-03 12:33:49, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:49, Info                  WDS    Friendly name:      [Loopback Pseudo-Interface 1]
2017-08-03 12:33:49, Info                  WDS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:49, Info                  WDS    Type:               24; IF_TYPE_SOFTWARE_LOOPBACK
2017-08-03 12:33:49, Info                  WDS    Flags:              384
2017-08-03 12:33:49, Info                  WDS    MTU:                4294967295
2017-08-03 12:33:49, Info                  WDS    UNICAST:
2017-08-03 12:33:49, Info                  WDS          [::1]
2017-08-03 12:33:49, Info                  WDS          [127.0.0.1]
2017-08-03 12:33:49, Info                  WDS    ANYCAST:
2017-08-03 12:33:49, Info                  WDS    MULTICAST:
2017-08-03 12:33:49, Info                  WDS    DNS:
2017-08-03 12:33:49, Info                  WDS    QueryAdapterStatus: found operational adapter with DHCP address assigned.
2017-08-03 12:33:49, Info                  WDS    Spent 3047ms confirming network initialization; status 0x00000000
2017-08-03 12:33:49, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:49, Info                  WDS    Friendly name:      [Ethernet]
2017-08-03 12:33:49, Info                  WDS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:49, Info                  WDS    Type:               6; IF_TYPE_ETHERNET_CSMACD
2017-08-03 12:33:49, Info                  WDS    Flags:              453
2017-08-03 12:33:49, Info                  WDS    MTU:                1500
2017-08-03 12:33:49, Info                  WDS    UNICAST:
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Info                  WDS    ANYCAST:
2017-08-03 12:33:49, Info                  WDS    MULTICAST:
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Info                  WDS    DNS:
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Info                  WDS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:49, Info                  WDS    Friendly name:      [Loopback Pseudo-Interface 1]
2017-08-03 12:33:49, Info                  WDS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:49, Info                  WDS    Type:               24; IF_TYPE_SOFTWARE_LOOPBACK
2017-08-03 12:33:49, Info                  WDS    Flags:              384
2017-08-03 12:33:49, Info                  WDS    MTU:                4294967295
2017-08-03 12:33:49, Info                  WDS    UNICAST:
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Error      [0x0b003a] WDS          <GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]
2017-08-03 12:33:49, Info                  WDS    ANYCAST:
2017-08-03 12:33:49, Info                  WDS    MULTICAST:
2017-08-03 12:33:49, Info                  WDS    DNS:
2017-08-03 12:33:49, Info                  WDS    GetNetworkingInfo: WpeNetworkStatus returned [0x806]. Flags set: WPE_NETWORK_ADAPTER_OPERATIONAL WPE_NETWORK_DHCP_ENABLED WPE_NETWORK_ADAPTER_HAS_DHCP_ADDRESS  
2017-08-03 12:33:49, Info       [0x0b0023] WDS    StartNetworking: Networking successfully started.
2017-08-03 12:33:49, Info       [0x0a0014] UI     In WDS Mode. Callback for WDS UI happened
2017-08-03 12:33:49, Info       [0x0b006e] WDS    GetServerParamsFromBootPacket: WDS Server information. Server Name [PRIVAT-WS2016DC.intern.psimon.at], Server IP Address [192.168.123.2]
2017-08-03 12:33:49, Info                  WDS    	List of interfaces on client
2017-08-03 12:33:49, Info                  WDS    IP Address [192.168.123.14] MAC Address [D4BED96FC960]
2017-08-03 12:33:49, Info       [0x0b008c] WDS    <- WdsCliRegisterTrace=0
2017-08-03 12:33:49, Info       [0x0b008c] WDS    CClientLibrary::InitializeRpcSession: Binding String=1a927394-352e-4553-ae3f-7cf4aafca620@ncacn_ip_tcp:192.168.123.2
2017-08-03 12:33:49, Info       [0x0b008c] WDS    CClientLibrary::InitializeRpcSession: Binding String=1a927394-352e-4553-ae3f-7cf4aafca620@ncacn_ip_tcp:192.168.123.2
2017-08-03 12:33:49, Info                  WDS    Server installed features: 0x1
2017-08-03 12:33:49, Info                  WDS    Server supports metadata query: Yes
2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Request.Type='Deployment'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.Architecture.Process='X64'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.Architecture.Native='X64'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.Firmware.Type='UEFI'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Manufacturer='Dell Inc.'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Model='Latitude E6330'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Vendor='Dell Inc.'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Version='A17'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.ChassisType='Laptop'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.UUID={4C4C4544-0034-4310-804C-B3C04F4C5631}

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Request.Version=1.0.0.0

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Version=10.0.15063.0

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Host.Version=10.0.15063.0

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.DDP.Default.Match=FALSE

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Device.ID=[D4-BE-D9-6F-C9-60]

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Device.ID=[44-45-4C-4C-34-00-10-43-80-4C-B3-C0-4F-4C-56-31]

2017-08-03 12:33:49, Info       [0x0b008c] WDS    Sending metadata server request; 16 entries.
2017-08-03 12:33:49, Info       [0x0b008c] WDS    Successfully completed metadata server request; 14 entries.
2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.Architecture.Process='X64'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.Architecture.Native='X64'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.Firmware.Type='UEFI'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Manufacturer='Dell Inc.'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Model='Latitude E6330'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Vendor='Dell Inc.'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.Version='A17'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.ChassisType='Laptop'  

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Property.SMBIOS.UUID={4C4C4544-0034-4310-804C-B3C04F4C5631}

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Request.Version=1.0.0.0

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Version=10.0.15063.0

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Host.Version=10.0.15063.0

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.DDP.Default.Match=FALSE

2017-08-03 12:33:49, Info       [0x0b008c] WDS        WDS.Client.Request.ResendAuthenticated=TRUE

2017-08-03 12:33:49, Info                  WDS    InitializeUnattend: Publishing command line option
2017-08-03 12:33:49, Info       [0x0600b2] IBS    Callback_Unattend_ProcessCmdLine:Unattend file specified by user is X:\sources\wdsunattend\wdsunattend.xml
2017-08-03 12:33:49, Info       [0x0600b3] IBS    Callback_Unattend_ProcessCmdLine:Unattend full path name is X:\sources\wdsunattend\wdsunattend.xml
2017-08-03 12:33:49, Info                  IBS    Callback_Engine_ValidateSystemRequirements:Current OS version [10.0.15063] Service pack version [0.0]
2017-08-03 12:33:49, Info                  IBS    Callback_Engine_ValidateSystemRequirements:System has enough memory: [8100 MB] >= [376 MB]
2017-08-03 12:33:49, Info                  IBS    Callback_Engine_ValidateProcessorRequirements: Processor met minimum system requirements.
2017-08-03 12:33:49, Info                         Callback_GatherDiskInfo: Entry: flags = [0x0]; major = [Initialization] / minor = [0x30005]
2017-08-03 12:33:49, Info                         RefreshDiskInfo: Using VDS
2017-08-03 12:33:49, Info       [0x0606cc] IBS    InitVDSService:Creating VDS loader...
2017-08-03 12:33:49, Info       [0x0606cc] IBS    InitVDSService:Loading VDS service... 
2017-08-03 12:33:55, Info       [0x0606cc] IBS    InitVDSService:Successfully launched service.
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Querying disk information...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Querying drive letters...
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Done querying drive letters.
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Finished gathering disk information.
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:===== Disk number  =====
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  Friendly name: [ST9250827AS]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  Arc path: [multi(0)disk(0)rdisk(0)]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  Disk ID guid [{61A62065-B0FD-4733-E375-BD5EBBD81AF8}]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  Size (bytes) [250059350016 / 0x3a38b2e000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  Sector size (bytes) [512]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  Disk bus type: [RAID]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  SMART health status = OK
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  Partition style: GPT
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  7 region(s), 4 partition(s), 4 toplevel partition(s)
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [0 / 0x0]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [17408 / 0x4400]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [17408 / 0x4400]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [1031168 / 0xfbc00]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [1] -------
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [1048576 / 0x100000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [471859200 / 0x1c200000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [1]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{DE94BBA4-06D1-4D40-A16A-BFD50179D6AC}] (recognized)
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Recovery partition
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume1]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Volume label: [Wiederherstellung]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [91013120]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [2] -------
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [472907776 / 0x1c300000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [104857600 / 0x6400000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [2]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{C12A7328-F81F-11D2-BA4B-00A0C93EC93B}] (recognized)
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    EFI system partition
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume2]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    File system type: [FAT32]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [74568704]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [3] -------
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [577765376 / 0x22700000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [16777216 / 0x1000000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [3]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{E3C9E316-0B5C-4DB8-817D-F92DF00215AE}] (recognized)
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    MSR partition
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume3]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    File system type: [RAW]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [16777216]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [4] -------
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [594542592 / 0x23700000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [249464619008 / 0x3a15400000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [4]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{EBD0A0A2-B9E5-4433-87C0-68B6B72699C7}] (recognized)
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    DOS drive letter [C:]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume4]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Volume flags = [0x98460]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [130150514688]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [250059161600 / 0x3a38b00000]
2017-08-03 12:33:55, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [171520 / 0x29e00]
2017-08-03 12:33:55, Info                         PublishDiskInfoOnBlackboard: Serializing disk info...
2017-08-03 12:33:55, Info                         GatherCapabilityParams: Can't tell if user is attempting cross-architecture install (image selection may not be done)  
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GetSystemDiskNTPath: Found system disk at [\Device\Harddisk0\DR0].
2017-08-03 12:33:55, Info       [0x0606cc] IBS    GetSystemDiskNumber: Disk  is the system disk.
2017-08-03 12:33:55, Info                  IBS    IsDiskSupported:Checking if disk  has the necessary driver support.
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device description is [Laufwerk]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\DiskST925082_____________7AS3.AA]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\DiskST925082_____________7AS]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\DiskST925082]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\ST925082_____________7AS3]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [ST925082_____________7AS3]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [GenDisk]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [SCSI\Disk]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [SCSI\RAW]
2017-08-03 12:33:55, Info                  IBS    IsDeviceIDPresent:Found device ID [GenDisk] in hwcompat list
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device [Laufwerk] is supported
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device description is [Intel(R) Mobile Express-Chipsatz-SATA-RAID-Controller]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&SUBSYS_05331028&REV_04]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&SUBSYS_05331028]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&CC_010400]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&CC_0104]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&DEV_282A&REV_04]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&DEV_282A]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_010400]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_0104]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_010400]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_0104]
2017-08-03 12:33:55, Info                  IBS    IsDeviceIDPresent:Found device ID [PCI\VEN_8086&DEV_282A&CC_0104] in hwcompat list
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device [Intel(R) Mobile Express-Chipsatz-SATA-RAID-Controller] is supported
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device description is [Stammkomplex f�r PCI-Express]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI\VEN_PNP&DEV_0A08]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI\PNP0A08]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0A08]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [*PNP0A03]
2017-08-03 12:33:55, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0A08] in hwcompat list
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device [Stammkomplex f�r PCI-Express] is supported
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device description is [Microsoft ACPI-konformes System]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI_HAL\PNP0C08]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0C08]
2017-08-03 12:33:55, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0C08] in hwcompat list
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device [Microsoft ACPI-konformes System] is supported
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device description is [ACPI x64-basierter PC]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      H/w    ID [acpiapic]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTEDInternal\ACPI_HAL]
2017-08-03 12:33:55, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTED\ACPI_HAL]
2017-08-03 12:33:55, Info                  IBS    IsDeviceIDPresent:Found device ID [acpiapic] in hwcompat list
2017-08-03 12:33:55, Info                  IBS    IsDeviceSupported:Device [ACPI x64-basierter PC] is supported
2017-08-03 12:33:55, Info                  IBS    DetermineDeviceSupport:Disk 0 has the necessary driver support
2017-08-03 12:33:55, Info                         PublishDiskInfoOnBlackboard: Successfully serialized disk info.
2017-08-03 12:33:55, Info                         Callback_GatherDiskInfo: Exit
2017-08-03 12:33:55, Info       [0x0a0015] UI     In WDS Mode. Going to publish EVENT_SHOW_UI,SHOW_UI_WDS
2017-08-03 12:33:55, Info       [0x070035] DIAG   CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2017-08-03 12:33:55, Info       [0x07003a] DIAG   CallBack_DiagnosticDataGeneration: Obtaining Install information
2017-08-03 12:33:55, Info       [0x070030] DIAG   Install Data logging to BB
2017-08-03 12:33:55, Info       [0x07003f] DIAG   CallBack_DiagnosticDataGeneration: Obtaining New OS information
2017-08-03 12:33:55, Info       [0x07005f] DIAG   Failed to get the EditionId from the blackboard.[gle=0x00000490]
2017-08-03 12:33:55, Info       [0x070066] DIAG   Failed to get the target language from the blackboard.[gle=0x00000490]
2017-08-03 12:33:55, Info       [0x07002e] DIAG   Logging New OS to BB
2017-08-03 12:33:55, Info                  IBS    Unattend: Setup is running in WinPE; will wait for removable storage devices to initialize before unattend search
2017-08-03 12:33:55, Info                  IBS    Unattend: Removable storage devices initialized; waited 0ms (status 0x00000000)
2017-08-03 12:33:55, Info                         [setup.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [X:\sources\wdsunattend\wdsunattend.xml]...
2017-08-03 12:33:55, Info                         [setup.exe] UnattendFindAnswerFile: [X:\sources\wdsunattend\wdsunattend.xml] meets criteria for an explicitly provided unattend file.
2017-08-03 12:33:55, Info                  IBS    Callback_Unattend_InitEngine:Using unattend file found at [X:\sources\wdsunattend\wdsunattend.xml].
2017-08-03 12:33:55, Info                  IBS    Setup created HKLM\SYSTEM\Setup\Schema key; status 0x00000000
2017-08-03 12:33:55, Info                  IBS    Restoring SMI schema hive to HKLM\SYSTEM\Setup\Schema from [X:\Sources\schema.dat]; status 0x00000000
2017-08-03 12:33:55, Info                  IBS    Restored schema hive; status 0x00000000
2017-08-03 12:33:55, Info                  IBS    ValidateUnattendFile: prepared schema hive for WinPE-related pass; status = 0x00000000
2017-08-03 12:33:55, Info                         [setup.exe] ValidateSMIPass: serialized settings stream; status 0x00000000
2017-08-03 12:33:55, Info                         [setup.exe] ValidateSMIPass: construct settings context; status 0x00000000
2017-08-03 12:33:55, Info                         [setup.exe] ValidateSMIPass: load SMI settings; status 0x00000000
2017-08-03 12:33:55, Info       [0x0600c0] IBS    Callback_Unattend_InitEngine:Successfully deserialized and validated unattend file [X:\sources\wdsunattend\wdsunattend.xml].
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:About to read languages from lang.ini file.
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Langpack root directory is [X:\Langpacks].
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Language [de-de] was determined to be on media number .
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Added language [de-de] to language list.
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Storing language [de-de] as lang.ini default language.
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Language [de-de] has already been installed in the image.
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:[de-de] is the only language in the lang.ini. Storing it as the target language.
2017-08-03 12:33:55, Info                  MIG    Callback_CompliancePrerequisites: event MigLoader:0x170006 occured
2017-08-03 12:33:55, Info       [0x060538] IBS    Callback_License_LoadLicenseText: Could not find edition ID information on blackboard
2017-08-03 12:33:55, Info       [0x060537] IBS    Callback_License_LoadLicenseText: Could not find channel ID information on blackboard; assuming default channel.
2017-08-03 12:33:55, Info                  IBS    CallBack_LanguagePack_ReadLangIni:Successfully gathered language list from lang.ini.
2017-08-03 12:33:55, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [WpeBootstrapSettings] as processed.
2017-08-03 12:33:55, Info                  IBS    ==== Bildschirmeinstellungen werden initialisiert ====
2017-08-03 12:33:55, Info                  IBS    No display settings specified
2017-08-03 12:33:55, Info                  IBS    STATUS: SUCCESS (0x00000001)
2017-08-03 12:33:55, Info                  IBS    ==== Computername wird initialisiert ====
2017-08-03 12:33:55, Info                  IBS    Generating a random computer name
2017-08-03 12:33:55, Info                  IBS    Computer is already named and no new name is specified, returning success.
2017-08-03 12:33:55, Info                  IBS    STATUS: SUCCESS (0x00000001)
2017-08-03 12:33:55, Info                  IBS    ==== Die virtuelle Speicherauslagerungsdatei wird initialisiert ====
2017-08-03 12:33:55, Info                  IBS    No WinPE page file setting specified
2017-08-03 12:33:55, Info                  IBS    STATUS: SUCCESS (0x00000001)
2017-08-03 12:33:55, Info                  IBS    ==== Optionale Komponenten werden initialisiert ====
2017-08-03 12:33:55, Info                  IBS    STATUS: SUCCESS (0x00000001)
2017-08-03 12:33:55, Info                  IBS    ==== Netzwerkzugriff wird initialisiert und Konfiguration wird angewendet ====
2017-08-03 12:33:55, Info                  IBS    Waiting on the profiling mutex handle
2017-08-03 12:33:55, Info                  IBS    Acquired profiling mutex
2017-08-03 12:33:55, Info                  IBS    Service dhcp start: 0x00000000
2017-08-03 12:33:55, Info                  IBS    Service lmhosts start: 0x00000000
2017-08-03 12:33:55, Info                  IBS    Service ikeext start: 0x00000000
2017-08-03 12:33:55, Info                  IBS    Service mpssvc start: 0x00000000
2017-08-03 12:33:55, Info                  IBS    Service NetBIOS start: 0x00000000
2017-08-03 12:33:55, Info                  IBS    Service LanmanWorkstation start: 0x00000000
2017-08-03 12:33:55, Info                  IBS    Service mrxsmb10 start: 0x00000000
2017-08-03 12:33:55, Info                  IBS    Released profiling mutex
2017-08-03 12:33:55, Info                  IBS    Spent 0ms installing network components
2017-08-03 12:33:56, Info                  IBS    Spent 485ms installing network drivers
2017-08-03 12:33:56, Info                  CSI    00000001@2017/8/3:11:33:56.505 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7ffb17b54219 @0x7ffb17f21ff3 @0x7ffb17f38a46 @0x7ffb17f10821 @0x7ffb17f0f5dd @0x7ffb1aa6b071)
2017-08-03 12:33:56, Info                  IBS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:56, Info                  IBS    Friendly name:      [Ethernet]
2017-08-03 12:33:56, Info                  IBS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:56, Info                  IBS    Type:               6; IF_TYPE_ETHERNET_CSMACD
2017-08-03 12:33:56, Info                  IBS    Flags:              453
2017-08-03 12:33:56, Info                  IBS    MTU:                1500
2017-08-03 12:33:56, Info                  IBS    UNICAST:
2017-08-03 12:33:56, Info                  IBS          [fe80::a592:ba6:8c70:d01f%3]
2017-08-03 12:33:56, Info                  IBS          [192.168.123.14]
2017-08-03 12:33:56, Info                  IBS    ANYCAST:
2017-08-03 12:33:56, Info                  IBS    MULTICAST:
2017-08-03 12:33:56, Info                  IBS          [ff01::1%3]
2017-08-03 12:33:56, Info                  IBS          [ff02::1%3]
2017-08-03 12:33:56, Info                  IBS          [ff02::1:ff70:d01f%3]
2017-08-03 12:33:56, Info                  IBS          [224.0.0.1]
2017-08-03 12:33:56, Info                  IBS    DNS:
2017-08-03 12:33:56, Info                  IBS          [192.168.123.2]
2017-08-03 12:33:56, Info                  IBS          [8.8.8.8]
2017-08-03 12:33:56, Info                  IBS    // Checking Adapter Status /////////////////////////////////////
2017-08-03 12:33:56, Info                  IBS    Friendly name:      [Loopback Pseudo-Interface 1]
2017-08-03 12:33:56, Info                  IBS    Operational Status: 1; IfOperStatusUp
2017-08-03 12:33:56, Info                  IBS    Type:               24; IF_TYPE_SOFTWARE_LOOPBACK
2017-08-03 12:33:56, Info                  IBS    Flags:              384
2017-08-03 12:33:56, Info                  IBS    MTU:                4294967295
2017-08-03 12:33:56, Info                  IBS    UNICAST:
2017-08-03 12:33:56, Info                  IBS          [::1]
2017-08-03 12:33:56, Info                  IBS          [127.0.0.1]
2017-08-03 12:33:56, Info                  IBS    ANYCAST:
2017-08-03 12:33:56, Info                  IBS    MULTICAST:
2017-08-03 12:33:56, Info                  IBS    DNS:
2017-08-03 12:33:56, Info                  IBS    QueryAdapterStatus: found operational adapter with DHCP address assigned.
2017-08-03 12:33:56, Info                  IBS    Spent 0ms confirming network initialization; status 0x00000000
2017-08-03 12:33:56, Info                  IBS    STATUS: SUCCESS (0x00000000)
2017-08-03 12:33:56, Info                  IBS    ==== Firewalleinstellungen werden angewendet ====
2017-08-03 12:33:56, Info                  IBS    WinPE firewall setting Enabled: 0x00000000
2017-08-03 12:33:56, Info                  IBS    STATUS: SUCCESS (0x00000000)
2017-08-03 12:33:56, Info                  IBS    ==== Synchrone Benutzerbefehle werden ausgef�hrt ====
2017-08-03 12:33:56, Info                  IBS    STATUS: SUCCESS (0x00000001)
2017-08-03 12:33:56, Info                  IBS    ==== Asynchrone Benutzerbefehle werden ausgef�hrt ====
2017-08-03 12:33:56, Info                  IBS    STATUS: SUCCESS (0x00000001)
2017-08-03 12:33:56, Info                  IBS    ==== Einstellungen f�r das Herunterfahren werden angewendet ====
2017-08-03 12:33:56, Info                  IBS    STATUS: SUCCESS (0x00000000)
2017-08-03 12:33:56, Info                  IBS    Successfully applied WinPE bootstrap unattend settings
2017-08-03 12:33:56, Info       [0x0604d4] IBS    Callback_ConfigSetProcessUnattend: UseConfigurationSet is false.
2017-08-03 12:33:56, Info                         PnPIBS: Entering PnP callback to install drivers on WinPE ...

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver paths ...

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver directory C:\$WinPEDriver$.

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.

2017-08-03 12:33:56, Info                         PnPIBS: Finished checking for pre-configured driver paths.

2017-08-03 12:33:56, Info                         PnPIBS: Reading driver paths from unattend.xml ...

2017-08-03 12:33:56, Info                         PnPIBS: Finished reading driver paths from unattend.xml.

2017-08-03 12:33:56, Info                         PnPIBS: Exiting PnP callback to install drivers on WinPE ...

2017-08-03 12:33:56, Info                         PnPIBS: Entering PnP callback to add drivers to the offline image ...

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver paths ...

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver directory C:\$WinPEDriver$.

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.

2017-08-03 12:33:56, Info                         PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.

2017-08-03 12:33:56, Info                         PnPIBS: Finished checking for pre-configured driver paths.

2017-08-03 12:33:56, Info                         PnPIBS: Reading driver paths from unattend.xml ...

2017-08-03 12:33:56, Info                         PnPIBS: Finished reading driver paths from unattend.xml.

2017-08-03 12:33:56, Info                         Callback_GatherDiskInfo: Entry: flags = [0x1]; major = [DriveInformation] / minor = [0x90001]
2017-08-03 12:33:56, Info                         RefreshDiskInfo: Using VDS
2017-08-03 12:33:56, Info                         RefreshDiskInfo: Found flag DISKINFO_REENUMERATE_DISKS
2017-08-03 12:33:56, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Reenumerating disk devices...
2017-08-03 12:33:56, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Successfully reenumerated disks...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Successfully waited for pending device installs.
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Querying disk information...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeInfo: Found volume with NULL GUID; must use alternate path...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeInfo did not succeed (hr = 0x80070032); trying legacy path...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Querying drive letters...
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherVolumeDriveLetters: Done querying drive letters.
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GatherDiskInfo_ThreadFunc:Finished gathering disk information.
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:===== Disk number  =====
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  Friendly name: [ST9250827AS]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  Arc path: [multi(0)disk(0)rdisk(0)]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  Disk ID guid [{61A62065-B0FD-4733-E375-BD5EBBD81AF8}]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  Size (bytes) [250059350016 / 0x3a38b2e000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  Sector size (bytes) [512]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  Disk bus type: [RAID]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  SMART health status = OK
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  Partition style: GPT
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  7 region(s), 4 partition(s), 4 toplevel partition(s)
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [0 / 0x0]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [17408 / 0x4400]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [17408 / 0x4400]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [1031168 / 0xfbc00]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [1] -------
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [1048576 / 0x100000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [471859200 / 0x1c200000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [1]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{DE94BBA4-06D1-4D40-A16A-BFD50179D6AC}] (recognized)
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Recovery partition
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume1]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Volume label: [Wiederherstellung]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [91013120]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [2] -------
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [472907776 / 0x1c300000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [104857600 / 0x6400000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [2]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{C12A7328-F81F-11D2-BA4B-00A0C93EC93B}] (recognized)
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    EFI system partition
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume2]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    File system type: [FAT32]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [74568704]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [3] -------
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [577765376 / 0x22700000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [16777216 / 0x1000000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [3]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{E3C9E316-0B5C-4DB8-817D-F92DF00215AE}] (recognized)
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    MSR partition
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume3]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    File system type: [RAW]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [16777216]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  ------ NT partition number [4] -------
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [594542592 / 0x23700000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [249464619008 / 0x3a15400000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Simple index: [4]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    GPT partition type: [{EBD0A0A2-B9E5-4433-87C0-68B6B72699C7}] (recognized)
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    DOS drive letter [C:]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    NT path: [\Device\HarddiskVolume4]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    File system type: [NTFS]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    File system version: [3:1]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Volume flags = [0x98460]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Volume free space (bytes) [130150514688]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:  ------- Unallocated disk region --------
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Offset (bytes) [250059161600 / 0x3a38b00000]
2017-08-03 12:34:01, Info       [0x0606cc] IBS    DiskInfo:    Size (bytes) [171520 / 0x29e00]
2017-08-03 12:34:01, Info                         PublishDiskInfoOnBlackboard: Serializing disk info...
2017-08-03 12:34:01, Info                         GatherCapabilityParams: Can't tell if user is attempting cross-architecture install (image selection may not be done)  
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GetSystemDiskNTPath: Found system disk at [\Device\Harddisk0\DR0].
2017-08-03 12:34:01, Info       [0x0606cc] IBS    GetSystemDiskNumber: Disk  is the system disk.
2017-08-03 12:34:01, Info                  IBS    IsDiskSupported:Checking if disk  has the necessary driver support.
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device description is [Laufwerk]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\DiskST925082_____________7AS3.AA]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\DiskST925082_____________7AS]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\DiskST925082]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [SCSI\ST925082_____________7AS3]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [ST925082_____________7AS3]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [GenDisk]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [SCSI\Disk]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [SCSI\RAW]
2017-08-03 12:34:01, Info                  IBS    IsDeviceIDPresent:Found device ID [GenDisk] in hwcompat list
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device [Laufwerk] is supported
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device description is [Intel(R) Mobile Express-Chipsatz-SATA-RAID-Controller]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&SUBSYS_05331028&REV_04]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&SUBSYS_05331028]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&CC_010400]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [PCI\VEN_8086&DEV_282A&CC_0104]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&DEV_282A&REV_04]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&DEV_282A]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_010400]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086&CC_0104]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\VEN_8086]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_010400]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [PCI\CC_0104]
2017-08-03 12:34:01, Info                  IBS    IsDeviceIDPresent:Found device ID [PCI\VEN_8086&DEV_282A&CC_0104] in hwcompat list
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device [Intel(R) Mobile Express-Chipsatz-SATA-RAID-Controller] is supported
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device description is [Stammkomplex f�r PCI-Express]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI\VEN_PNP&DEV_0A08]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI\PNP0A08]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0A08]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [*PNP0A03]
2017-08-03 12:34:01, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0A08] in hwcompat list
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device [Stammkomplex f�r PCI-Express] is supported
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device description is [Microsoft ACPI-konformes System]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [ACPI_HAL\PNP0C08]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [*PNP0C08]
2017-08-03 12:34:01, Info                  IBS    IsDeviceIDPresent:Found device ID [*PNP0C08] in hwcompat list
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device [Microsoft ACPI-konformes System] is supported
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device description is [ACPI x64-basierter PC]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      H/w    ID [acpiapic]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTEDInternal\ACPI_HAL]
2017-08-03 12:34:01, Info                  IBS    DumpDeviceIDs:      Compat ID [DETECTED\ACPI_HAL]
2017-08-03 12:34:01, Info                  IBS    IsDeviceIDPresent:Found device ID [acpiapic] in hwcompat list
2017-08-03 12:34:01, Info                  IBS    IsDeviceSupported:Device [ACPI x64-basierter PC] is supported
2017-08-03 12:34:01, Info                  IBS    DetermineDeviceSupport:Disk 0 has the necessary driver support
2017-08-03 12:34:02, Info                         PublishDiskInfoOnBlackboard: Successfully serialized disk info.
2017-08-03 12:34:02, Info                         Callback_GatherDiskInfo: Exit
2017-08-03 12:34:02, Info                         PnPIBS: Exiting PnP callback to add drivers to the offline image ...

2017-08-03 12:34:02, Info       [0x0605ac] IBS    Callback_WinPE_SetSourceMediaInfo_Unattend:No need to determine source media path
2017-08-03 12:34:02, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [Diagnostics] as processed.
2017-08-03 12:34:02, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [UserData\ComputerName] as processed.
2017-08-03 12:34:02, Info       [0x060260] IBS    Callback_ComputerName_Unattend:UserName = Patrick Simon
2017-08-03 12:34:02, Info       [0x060263] IBS    Callback_ComputerName_Unattend:Organization = Privat
2017-08-03 12:34:02, Info       [0x060264] IBS    Callback_ComputerName_Unattend:ComputerName is * or was missing from unattend file; auto-generating a ComputerName
2017-08-03 12:34:02, Info       [0x06025d] IBS    Callback_ComputerName_Validate:Computer name is PATRICK-6N7I9SA
2017-08-03 12:34:02, Info       [0x06025a] IBS    Callback_ComputerName_Generate:Computer name [PATRICK-6N7I9SA] is valid.
2017-08-03 12:34:02, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [SetupUI\SkipEula] as processed.
2017-08-03 12:34:02, Info       [0x06029c] IBS    Callback_License_Unattend:User accepted the EULA in the unattend file.
2017-08-03 12:34:02, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [PrepareDisks] as processed.
2017-08-03 12:34:02, Info       [0x0603ce] IBS    CallBack_DiskConfiguration_ParseUnattend: Parsing unattend.xml's DiskConfiguration setting...  
2017-08-03 12:34:02, Info       [0x0606cc] IBS    <DiskConfiguration>: DisableEncryptedDiskProvisioning value was specificed
2017-08-03 12:34:02, Error      [0x0606cc] IBS    <DiskConfiguration>: Neither Extend nor Size were specified for CreatePartition for disk 0; exactly one of these settings must be present. If only <Extend> is present it should be specified as TRUE.[gle=0x00000057]
2017-08-03 12:34:02, Error      [0x0606cc] IBS    <DiskConfiguration>: the unattend file contains invalid data (see the disk entry with index 0)[gle=0x00000057]
2017-08-03 12:34:02, Error      [0x0606cc] IBS    UnattendProcessDiskConfigInfo: An error was found in the provided unattend file; hrResult = 0x80300007[gle=0x00000057]
2017-08-03 12:34:02, Info                  IBS    CallBack_DiskConfiguration_ParseUnattend: Setting the blackboard value to indicate eDrive activation policy
2017-08-03 12:34:02, Info       [0x0603d1] IBS    CallBack_DiskConfiguration_ParseUnattend: There was a problem with the unattend.xml's DiskConfiguration setting; showing the UI  
2017-08-03 12:34:02, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [LangPacks] as processed.
2017-08-03 12:34:02, Info       [0x060587] IBS    CallBack_LanguagePacks_Unattend:Processing unattend.
2017-08-03 12:34:02, Info       [0x060588] IBS    CallBack_LanguagePacks_Unattend:Show UI value is [3]
2017-08-03 12:34:02, Info       [0x060589] IBS    CallBack_LanguagePacks_Unattend:Setup language specified in the unattend file [de-DE]
2017-08-03 12:34:02, Info       [0x06058a] IBS    CallBack_LanguagePacks_Unattend:Target language specified in the unattend file [de-DE]
2017-08-03 12:34:02, Info       [0x06058b] IBS    CallBack_LanguagePacks_Unattend:Target fall back language specified in the unattend file [de-DE]
2017-08-03 12:34:02, Info       [0x060594] IBS    DetermineSetupLanguage:Validating setup language [de-DE]
2017-08-03 12:34:02, Info       [0x060595] IBS    DetermineSetupLanguage:Setting setup language to be [de-DE]
2017-08-03 12:34:02, Info       [0x06058c] IBS    CallBack_LanguagePacks_Unattend:Setup language is [de-DE]
2017-08-03 12:34:02, Info                  IBS    CallBack_LanguagePacks_Unattend: Successfully updated setup's resources to use the unattend selected language [de-DE].  
2017-08-03 12:34:02, Info                  IBS    CallBack_LanguagePacks_Unattend:In WDS mode, not determining target language.
2017-08-03 12:34:02, Info                         PnPIBS: Entering PnP callback to validate unattend.xml settings for component Microsoft-Windows-PnPCustomizationsWinPE ...

2017-08-03 12:34:02, Info                         PnPIBS: Reading driver paths from unattend.xml ...

2017-08-03 12:34:02, Info                         PnPIBS: Finished reading driver paths from unattend.xml.

2017-08-03 12:34:02, Info                         PnPIBS: Finished validating unattend.xml settings for component Microsoft-Windows-PnPCustomizationsWinPE.

2017-08-03 12:34:02, Info                  IBS    Callback_Compliance_Unattend: Wds mode detected. No need to process unattend settings.
2017-08-03 12:34:02, Info       [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [RegionalSettings] as processed.
2017-08-03 12:34:02, Info       [0x060583] IBS    SaveUnattendStringValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\SystemLocale] value is [de-DE]
2017-08-03 12:34:02, Info       [0x060584] IBS    SaveUnattendStringValueonBB:Successfully saved the value [de-DE] value on black board.
2017-08-03 12:34:02, Info       [0x060583] IBS    SaveUnattendStringValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\UserLocale] value is [de-DE]
2017-08-03 12:34:02, Info       [0x060584] IBS    SaveUnattendStringValueonBB:Successfully saved the value [de-DE] value on black board.
2017-08-03 12:34:02, Info       [0x060583] IBS    SaveUnattendStringValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\InputLocale] value is [0407:00000407]
2017-08-03 12:34:02, Info       [0x060584] IBS    SaveUnattendStringValueonBB:Successfully saved the value [0407:00000407] value on black board.
2017-08-03 12:34:02, Info       [0x0605f8] IBS    SaveUnattendDwordValueonBB:Unattend property [unattend\settings[pass=windowsPE]\component[name=Microsoft-Windows-International-Core-WinPE]\LayeredDriver] value is 
2017-08-03 12:34:02, Info       [0x0605f9] IBS    SaveUnattendDwordValueonBB:Successfully saved the value  value on black board.
2017-08-03 12:34:02, Info       [0x0605fb] IBS    Callback_Locale_ProcessUnattendSettings: Layered Driver from downlevel system [1]
2017-08-03 12:34:02, Info       [0x060572] IBS    Callback_Locale_SetSetupKeyboardLayout:Setup keyboard layout is [0407:00000407]
2017-08-03 12:34:02, Info       [0x060581] IBS    SetSetupKeyboardLayout:Successfully set the key board layout to [0407:00000407]
2017-08-03 12:34:02, Info       [0x060575] IBS    Callback_Locale_SetSetupKeyboardLayout:Successfully set the Setup keyboard layout to [0407:00000407]
2017-08-03 12:34:02, Info       [0x0b0029] WDS    CallBack_WdsClient_Unattend: Processing WdsClient unattend settings.
2017-08-03 12:34:02, Error      [0x064124] IBSLIB Credential\Domain should not be specified if Credential\Username already specifies Domain
2017-08-03 12:34:02, Error      [0x0b0048] WDS    CallBack_WdsClient_Unattend: Error processing unattended login. Error [0x80004005]
2017-08-03 12:34:02, Error      [0x0b004a] WDS    CallBack_WdsClient_Unattend: Error in processing WdsClient unattend settings. Error [0x80004005]
2017-08-03 12:34:02, Info       [0x0a018c] UI     Setup UI language is set to en-US.
2017-08-03 12:34:02, Info       [0x0a0016] UI     Callback with EVENT_SHOW_UI,SHOW_UI_WDS happend
2017-08-03 12:34:02, Warning               UI     CLanguages::v_InitLanguage - Failed to load en-US resources with error 2. Will load fallback binaries
2017-08-03 12:34:02, Info       [0x0a0051] UI     Initializing Page 
2017-08-03 12:34:02, Info                  UI     AppWindow has layout style 0
2017-08-03 12:34:02, Info                  UI     NavWindow has layout style 0
2017-08-03 12:34:02, Info       [0x0a017d] UI     User has specified the language thru command line. Language neutral selection UI won't be shown  
2017-08-03 12:34:02, Warning               UI     CLanguages::v_InitLanguage - Failed to load en-US resources with error 2. Will load fallback binaries
2017-08-03 12:34:02, Info       [0x0a0035] UI     Allowing Page '' to be shown  
2017-08-03 12:34:02, Info       [0x0a011c] UI     WizardDialogPost::SetActive
Member: holli.zimmi
holli.zimmi Aug 03, 2017 at 11:08:05 (UTC)
Goto Top
Hi,

wie ist das mit der Zeile 81 -82 ( bei deiner Unattend.xml):

 <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35"    
language="neutral" versionScope="nonSxS" processorArchitecture="x86">   

Da steht auch wieder x86! Hast Du das schon korrigiert?

Gruß

Holli
Mitglied: 133883
133883 Aug 03, 2017 updated at 11:09:27 (UTC)
Goto Top
Die Fehlermeldungen sind je eindeutig und selbsterklärend ...!!


2017-08-03 12:34:02, Error [0x0606cc] IBS <DiskConfiguration>: Neither Extend nor Size were specified for CreatePartition for disk 0; exactly one of these settings must be present. If only <Extend> is present it should be specified as TRUE.[gle=0x00000057]

2017-08-03 12:34:02, Error [0x0606cc] IBS <DiskConfiguration>: the unattend file contains invalid data (see the disk entry with index 0)[gle=0x00000057]

2017-08-03 12:34:02, Error [0x0606cc] IBS UnattendProcessDiskConfigInfo: An error was found in the provided unattend file; hrResult = 0x80300007[gle=0x00000057]

2017-08-03 12:34:02, Error [0x064124] IBSLIB Credential\Domain should not be specified if Credential\Username already specifies Domain

2017-08-03 12:34:02, Error [0x0b004a] WDS CallBack_WdsClient_Unattend: Error in processing WdsClient unattend settings. Error [0x80004005]
Mitglied: 133883
133883 Aug 03, 2017 updated at 11:11:54 (UTC)
Goto Top
Zitat von @holli.zimmi:
Da steht auch wieder x86! Hast Du das schon korrigiert?
Haben wir oben schon abgehandelt.
Danke für den Hinweis aber Sorry, war die Falsche Datei
Member: psimon87
psimon87 Aug 03, 2017 updated at 13:32:44 (UTC)
Goto Top
Also jetzt habe ich Windows ADK neu heruntergeladen. Anscheinend dürfte ich eine alte Version erwischt haben. Die neue Version ist für Windows 10 1703

Habe jetzt ein komplett neues XML File erstellt wo ich erstmals nur der Domäne beitrete und die Setup Sprache einstellen möchte. Auch dies funktioniert nicht. Error´s sind jetzt alle weg bis auf eines - dies wiederholt sich wie im ersten Fall etliche Male

<GetNameInfo failed; status 0x8007276d>[gle=0x0000276d]

Trotzdem kommt das Sprachauswahlfenster und auch Einloggen muss ich mich face-sad
Member: holli.zimmi
Solution holli.zimmi Aug 03, 2017 at 13:48:00 (UTC)
Goto Top
Hi

das klingt eher wie ein Bug in der neuen Version!
Probier doch mal eine vorherige Version von Windows 10 mit der gleichen "config"!

Gruß

Holli
Member: psimon87
psimon87 Aug 07, 2017 updated at 11:27:28 (UTC)
Goto Top
Okay scheinbar dürfte es wirklich ein Bug sein. Denn mit der Version 1607 klappt es. Da nimmt er die Sprache und das Menü erscheint nicht.

Hoffe mit dem nächsten Update klappt es dann wieder, ist schon mühsam eine alte Version installieren zu müssen.

Dafür hänge ich jetzt beim Punkt "DiskConfiguration". Enntweder es kommt die Meldung das die Antwortdatei nicht analysiert werden kann oder es kommt trotzdem das Menü zum Einstellen der Partitionen. Aber ist wahrscheinlich nur ein Punkt bei der Konfiguration - obwohl ich es mit dem Image Manager mache und er da eigentlich auf Fehler hinweist. Aus dem Log ist auch nicht viel herauszubekommen.

Aber danke mal für die Hilfe - vielleicht wende ich mich trotzdem nochmal an euch face-smile

LG
Patrick
Member: gimbanossi
gimbanossi Sep 18, 2019 at 09:45:07 (UTC)
Goto Top
Ich habe genau das gleiche Fehlerbild mit 1903.
Gibt es hierzu noch eine Idee?
Ich benutze die Windows 10 1903 Pro Deutsch ISO von Microsofts Downloadseite und erstelle anhand dieser mit WSIM eine XML dafür. Diese findet auch Anwendung, allerdings möchte das Setup die "SetupUILanguage" immer auf en-US stellen, obwohl in der XML de-DE steht.