To make a long story short: I am trying to deploy Windows 7 Enterprise x64 onto an HP EliteBook 8560w laptop, using WDS on Windows Server 2008 R2 Standard, with Driver Injection as our means of driver installation on the image.. Everything installs fine, except for the USB3.0, fingerprint, and wi-fi drivers. Running on a deadline here, I am trying to get these stubborn drivers to install silently to the image from a network share, with the designated Msiexec switches (since they're packaged as msi's as well) in the unattend.xml of the image. So if my share were, say "\\ABC" then my lines in the unattend would look like the below:
<CommandLine>"\\ABC\NETLOGON\HPDrivers\fingerprint\EXTRACT\HPVFSSVC4.3.126.0.msi" Msiexec /i HPVFSSVC4.3.126.0.msi /q</CommandLine>
<Description>Call Fingerprint Reader</Description>
<Order>1</Order>
<CommandLine>"\\ABC\NETLOGON\HPDrivers\sp52146-usb.exe\sp52146-usb\nusb3drv.msi" Msiexec /i nusb3drv.msi /q</CommandLine>
<Description>Call USB3.0 Controller</Description>
<Order>2</Order>
Can a fresh set of eyes out there on the forums maybe see where I am going wrong on this? Looking forward to your replies one and all--thank you in advance! :)