psshutdown Posted April 9, 2014 Report post Posted April 9, 2014 Hello All, We are currently using SCCM 2012 SP1 for OS Deployment and i have been working on a HP elitebook 820 G1 and probook 650 G1. Both build successfully but do not install any device drivers. I have downloaded the driver package from HPs website, extracted all the drivers (inf,sys,cat) and put them into 'one' folder, i then created a driver package and imported the drivers into the package and category. In the task sequence i have created a 'apply driver package task' with the wmi query for this model, i have also tried disabling the 'auto detect drivers' so that it doesn't look into the DB. So far i haven't had any luck and have been working on this for over a week. I have looked at the smsts log on the workstation after the build and there are no errors relating to drivers. Any help will be appreciated Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted April 9, 2014 Report post Posted April 9, 2014 Are you sure the WMI query is correct, becease It sounds a lot like the drivers are not applied at all. Quote Share this post Link to post Share on other sites More sharing options...
psshutdown Posted April 9, 2014 Report post Posted April 9, 2014 I am using SELECT * FROM Win32_ComputerSystem WHERE Model LIKE "%HP EliteBook 820%" and I have also enabled the auto detect drivers so that drivers can be picked up from the database. We now have tried this will 3 different models with exactly the same results. As a test I built an older laptop and the device drivers were installed with no issues. Quote Share this post Link to post Share on other sites More sharing options...
Apexes Posted April 10, 2014 Report post Posted April 10, 2014 I build HP Probooks - had problems using "HP" in the query. drop that and try just the Elitebook 820% Quote Share this post Link to post Share on other sites More sharing options...
Israr Raja Posted April 10, 2014 Report post Posted April 10, 2014 Hi, i use a slightly different query for one HP notebook model and query against the win32_computersystemproduct. with this i have to make sure the product name including ALL the preceeding or trailing spaces are there for it to work. e.g: SELECT * FROM Win32_ComputerSystemProduct where Name like '%HP G62 Notebook PC %' Quote Share this post Link to post Share on other sites More sharing options...
anyweb Posted April 10, 2014 Report post Posted April 10, 2014 debugging this issue would be much easier if you use a pause step before and after the apply driver package step, see how here. this will enable you to see if the query is correct and whether the step has issues (for example, hash errors on the driver package) Quote Share this post Link to post Share on other sites More sharing options...
psshutdown Posted April 10, 2014 Report post Posted April 10, 2014 Thank you for your input gents. I used apexes query and that did the trick thanks. I have imported all the remaining drivers into the driver package and now during the 'applying settings' phase an error appears; "Windows could not configure one or more system components". I know this is due to a bad driver as it worked when i tried with a single network driver. The problem is the f8 doesn't work at this stage so how can I tell which driver is causing this issue? Quote Share this post Link to post Share on other sites More sharing options...
psshutdown Posted April 10, 2014 Report post Posted April 10, 2014 Digging a little further i found the following like which points me to Kernal-Mode driver and i should deploy this before the image. Do i need to create a new TS after 'disk format' and before 'applying operating system? http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/mostViewedDisplay?javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken&javax.portlet.prp_efb5c0793523e51970c8fa22b053ce01=wsrp-navigationalState%3DdocId%253Dmmr_kc-0113833-5%257CdocLocale%253Den_US&javax.portlet.tpst=efb5c0793523e51970c8fa22b053ce01&sp4ts.oid=5405400&ac.admitted=1397170904041.876444892.199480143 Quote Share this post Link to post Share on other sites More sharing options...
psshutdown Posted April 14, 2014 Report post Posted April 14, 2014 Does anyone know if Kernel mode drivers are included in SCCM 2012 SP1? Quote Share this post Link to post Share on other sites More sharing options...
psshutdown Posted April 15, 2014 Report post Posted April 15, 2014 Thought i'll update the Post. Injecting the Kernel-Mode Driver fixed the issue. The link below was useful; http://www.cb-net.co.uk/microsoft-articles/34-configmgr/2075-configmgr-kernel-mode-driver-framework-1-11-kb2685811 Quote Share this post Link to post Share on other sites More sharing options...