Introduction

In certain scenarios, drivers are provided as executable setup files instead of traditional driver packages. Examples include specific integration features like “Hotkey feature Integration”. To deploy these drivers through SCCM task sequences, you need to create a package and configure the task sequence appropriately.

Creating a Package for EXE Drivers

  1. Open the SCCM console and navigate to “Software Library”.
  2. Under “Overview”, go to “Application Management” and select “Packages”.
  3. Right-click on “Packages” and select “Create Package”.
  1. Fill in the necessary details such as Name, Version, Manufacturer, and Source folder where the setup.exe is located.
  2. Do not create a program as this will not work within task sequences.
  1. Click “Next” and complete the package creation process.

Configuring the Task Sequence

  1. Go to the “Software Library” workspace and select “Operating System Deployment”.
  2. Open the relevant task sequence where you want to add the driver installation.
  1. In the task sequence editor, add a “Run Command Line” step after the SCCM client installation.
  1. Select the package you created earlier.
  2. Enter the command line for the driver installation. For example:
    cmd /c setup.exe /silent /install

    Alternatively, you can use a batch file within the package to handle the installation commands.


Adding a WMI Filter

To ensure the driver is only installed on the appropriate systems, you can add a WMI filter to the task sequence step:

  1. In the task sequence editor, select the “Options” tab for the “Run Command Line” step.
  2. Click “Add Condition” and choose “Query WMI”.
  3. Enter a WMI query to filter the hardware models or other criteria. For example, to filter by model:
    SELECT * FROM Win32_ComputerSystem WHERE Model LIKE "YourModelName%"


0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.