We have a couple of workstation models that will not inject any drivers. The likely cause is that it is not being correctly detected and therefore doesn't choose any selection profile.
The deployment fails because there is no nic driver so it cannot reconnect to the deployment share after the OS installed and when I look in the device manager, there are no other drivers installed either there are question marks or generic drivers for everything (sound, display etc..).
When I do wmic computersystem get model, it returns "HP Compaq Elite 8300 SFF"
So I downloaded the driver management pack from the HP website for the model and imported all the extracted drivers into MDT and them created a driver selection profile that points to those drivers and then created a task that installs drivers from that selection profile based on these queries:
If any conditions are true
Select * FROM Win32_ComputerSystem Where Model like "%HP Compaq 8300 Elite SFF%"
Task sequence variable %model% equals HP Compaq 8300 Elite SFF
Despite this, no drivers are attempted to be installed.
How can I fix this so the drivers are matched and installed.
I have several other models in this deployment task sequence and this is one of only 2 models that don't work using the same syntax.