Search
Close this search box.

MVP Monday: Automating Driver OSD Deployment – Modern Driver Management

MVP Monday: Automating Driver OSD Deployment – Modern Driver Management

Traditional OSD Driver Deployment
Driver deployment during OSD has remained mostly unchanged since the days of ConfigMgr 2007, despite some of the awesome new features that have appeared since. For many, it can be a real bugbear to have to cater for an ever-expanding line of models to support.
Traditionally, the process of driver package processing during OSD involves creating a driver package and associating a WMI query to match the model and apply the driver package where a match is found. That is of course for those admins who stay away from the dreaded “use at your own risk” method that is Auto Apply Drivers.
In the example below you can see how the traditional WMI filtering method is applied for a Dell Latitude E5470:

modern driver management
modern driver management

WMI Query
SELECT * FROM Win32_ComputerSystem WHERE Model LIKE “%Latitude E5470%”

Modern Driver Management

Back in March of 2017, Nickolaj Andersen and I posted a method which attempted to address this issue. We called the process “Modern Driver Management” or MDM for short, not to be confused with Mobile Device Management.
The process used a web service as a secure method to query various objects in ConfigMgr and leverage the returned data with a PowerShell script. The initial three-step method was based on the model name of the machine which is retrieved from WMI in PowerShell. An example of WMI query can be seen below:

modern driver management

Feeding the model back into a PowerShell variable along with detecting the OS being deployed within the task sequence would, in most cases, provide a match (of course assuming that you were also using our Driver Automation Tool to create the packages). This allowed the next step to download the matching package and finally install the drivers via DISM, using a standard package approach (drivers contained within a package) as opposed to a driver package.

modern driver management

modern driver management

The shortfall of this method was that in some circumstances manufacturers such as Dell had models which contained sub-variants, for example, the Optiplex 9020 also has 9020M and 9020 AIO variants. Having looked at various values within WMI and matching based on regex logic, it was clear that an improved method needed to be put into place.

Improving Model Matching

Having considered the unique matching values we could use for model matching, we found that there was no one fits all approach to this. For example, HP models contain a unique matching in the BaseBoardProduct value:

Model: HP EliteBook Folio G1 Notebook PC
Get-CIMInstance -ClassName MS_SystemInformation -NameSpace root\WMI).BaseBoardProduct
8170

(Get-WMIObject -Class win32_computersystem).model
EliteBook Folio G1 Notebook PC

Using the BaseBoardProduct value in this instance, we can then provide a match against the HP XML feed resulting in a download. Using this approach across other manufacturers needs to be tweaked to cater for unique identifiers in different property fields. Here we have a PowerShell extract showing how this is achieved for each of the manufacturers:
Microsoft
$ComputerModel = Get-WmiObject -Namespace root\wmi -Class MS_SystemInformation | Select-Object Expand-Property SystemSKU
Hewlett-Packard
$SystemSKU = (Get-CIMInstance -ClassName MS_SystemInformation -NameSpace root\WMI).BaseBoardProduct
Dell
$SystemSKU = (Get-CIMInstance -ClassName MS_SystemInformation -NameSpace root\WMI).SystemSku
Lenovo
$SystemSKU = ((Get-WmiObject -Class Win32_ComputerSystem | Select-Object -ExpandProperty Model).SubString(0, 4)).Trim()

MDM Component Updates

With an improved model matching method, we set about putting through a number of improvements with the goal of having a single task sequence step for fully dynamic driver deployment.
In the background, we implemented updates to the Web Service and Driver Automation Tool to return matched values based on model entries written into the driver packages. Below is an example of a Lenovo driver package:

driver

You can see that in this instance there are many sub-models all supported by this single driver package.
One Script. One Step. Fully Dynamic Driver Deployment
Here we arrive at our solution today, a single PowerShell script that can do the following;

  1. Query the web service to return a list of available driver packages
  2. Match packages from the full list based on the models, OS and architecture supported by the driver package
  3. Download the content using OSDDownloadContent.exe and set the path variables
  4. Apply the downloaded driver content using DISM

That is a single task sequence entry to achieve all this automation:

modern driver
I think you will agree with me saying this is awesome.

Conclusion – PowerShell / Automation FTW

Most of what has been achieved here is done directly with PowerShell. So, for those of you who are still considering what value it has, please take time to learn how to script and provide some much-loved automation to your environment.
More information on the Modern Driver Management process and links to the Web Service, Driver Automation Tool and associated scripts can be found on the SCConfigMgr blog here.

Many thanks to Mattias Benninge in the post for providing the idea of the web service.

MEET YOUR MVPS

 

 
 
 

 

Report

The FORRESTER WAVE™: End-User Experience Management, Q3 2022

The FORRESTER WAVE™: End-User Experience Management, Q3 2022