ich habe ein seltsames Problem festgestellt. Ich weiß noch nicht ob das schon jemand von euch beobachtet hat. Wir nutzen für die Installation einen Windows 7 Datenträger incl. SP1 (Original Systembuilder Version) von Microsoft.
Es geht um die Integration von Treibern während des Setups. Einige Treiber scheinen einfach nicht mehr geladen zu werden. Siehe hier:
Code: Alles auswählen
PnPIBS: Found the file e1k6232.inf
PnPIBS: Added driver c:\drv\16\e1k6232.inf to the list of drivers.
PnPIBS: The class GUID for INF c:\drv\16\e1k6232.inf is 4d36e972-e325-11ce-bfc1-08002be10318
PnPIBS: The class GUID 4d36e972-e325-11ce-bfc1-08002be10318 is not boot-critical.
PnPIBS: The driver c:\drv\16\e1k6232.inf is not boot-critical and hence it will not be installed.
Der letzte Satz brachte den entscheidenen Hinweis. Habe unterhalb von "AUDITSYSTEM SETTINGS" in der Unattended.xml noch die Einstellung "offlineServicing" eingefügt, siehe hier:Konfigurieren von Gerätetreibern
Sollen bei einer unbeaufsichtigten Installation separate wichtige Starttreiber hinzugefügt werden, stellen Sie sicher, dass der wichtige Starttreiber auf Vorinstallationsmedien verfügbar ist. Erforderliche Starttreiber sollten während der Konfigurationsphase windowsPE hinzugefügt werden. Alle Treiber werden im Treiberspeicher bereitgestellt, doch nur wichtige Starttreiber werden sowohl im Windows-Offlineabbild als auch im Windows PE-Abbild widergespiegelt oder installiert. Für den Start nicht erforderliche Treiber können der Konfigurationsphase offlineServicing hinzugefügt werden. Dadurch wird sichergestellt, dass erforderliche Starttreiber verfügbar sind und der Treiber beim Start des Computers geladen wird.
Code: Alles auswählen
<!--
=====================
AUDITSYSTEM SETTINGS
=====================
The auditSystem pass is an optional pass that enables you to add additional device drivers and applications to the image.
This results in fewer required images because a reference image can be created with a minimal set of drivers.
The image can be updated with additional drivers during the audit process.
You can then test and resolve any operating system issues related to malfunctioning or incorrectly installed devices on the image.
For example, you can install additional language packs, updates, or other applications, such as Microsoft Office.
See Reseal mode in oobeSystem.
-->
<settings pass="offlineServicing">
<component name="Microsoft-Windows-PnPCustomizationsWinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DriverPaths>
<PathAndCredentials wcm:keyValue="1" wcm:action="add">
<Path>c:\drv</Path>
</PathAndCredentials>
</component>
<component name="Microsoft-Windows-PnpCustomizationsNonWinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DriverPaths>
<PathAndCredentials wcm:keyValue="1" wcm:action="add">
<Path>c:\drv</Path>
</PathAndCredentials>
</DriverPaths>
</component>
</settings>

Freue mich auf eure Meinungen dazu.