> Is there anyway to implement total control for drivers but utilise "if, then, > else" logic in SCCM?
First, create a driver package for each model you want to deploy. I know Dell provides these packages for OptiPlex, Precision, Latitude, and XPS systems: http://en.community.dell.com/techcenter/enterprise-client/w/wiki/2065.dell-driver-cab-files-for-enterprise-client-os-deployment.aspx Dell also has packages that combine all drivers for a family of models. For example, I have one driver package with the drivers for OptiPlex 3010, 7010, and 9010. In you task sequence, add an "Apply Driver Package" step for each driver package and add a WMI query condition so each step will only run on the appropriate computer model. My WMI query condition for the previously mentioned package is: select * from win32_computersystem where model like '%3010%' or model like '%7010%' or model like '%9010%' The task sequence will only apply the driver package when the model matches the WMI query. You can have several of these steps in the same task sequence. William

