How To Add Drivers to Boot Image In SCCM

Jason Barrett Jason Barrett | | Drivers

In this article I will show you how to add drivers to a boot image in SCCM.  The method I will show you below will also work with Microsoft WDS.

I will cover how to do it and also the best practices you should follow when doing this.

Why Add Drivers To Boot Image

In my experience you will only ever need to add a storage driver or a network driver in to the boot image.

The reason is because the task sequence will failed because it either can not locate the hard drive (If you get error 0x80070490 check out this article), or it can not get an IP address because WinPE can not detect a connected network device.

Injecting drivers in to the boot image will only affect the task sequence when it boots in to WinPE.

How To Add Drivers to Boot Image In SCCM

To add drivers in to the SCCM boot image follow these steps

Step 1 : Backup Boot Image

The first thing I like to do before updating any boot images is to backup the existing image so we can roll back to it if needed.

To backup the boot image follow these steps

  1. Open the SCCM console
  2. go to \Software Library\Overview\Operating Systems\Boot Images
  3. Right click on the boot image you want to update and select properties
  4. Click the Data Source tab
    sccm boot image properties
  5. Browse to the unc path that is shown in Image path
  6. I recommend to copy all the files in the boot folder
  7. Paste in to a separate folder

Step 2 : Import Drivers In To SCCM

You will need to add the network or storage driver in to the SCCM console before we can add it to the boot image.

We will need to add the driver in to a SCCM driver package at \Software Library\Overview\Operating Systems\Driver Packages

For a full guide on how to do this step take a look at this article I wrote

Step 3 : Create New Boot Image

In my experience it is better to create a new boot image rather than update existing boot images because the existing boot images might already be in use by tasks sequences and updating these images could cause issues with these task sequences.

If you want to update an existing boot image skip to step 4.

To create a new boot image follow these steps

  1. Copy the boot.wim from step 1 in to a new folder in the boot folder
  2. Below you can see I have create a Prod folder and copied the boot.wim file in to here
    create new boot image
  3. Open the SCCM Console
  4. Go to \Software Library\Overview\Operating Systems\Boot Images
  5. Click Add Boot Image in the toolbar at the top of the console
  6. Click browse and browse to the boot.wim we just copied to the new folder
    browse to new boot image
  7. Click next
  8. Enter the information about the boot image as shown below
    enter boot image information
  9. Click next
  10. Click next
  11. The new boot image will now be created, this usually takes a few minutes
  12. Click close
  13. Your new boot image will now be listed as shown below

new boot image

Step 4 : Inject Driver In To Boot Image

Now we need to inject the driver in to the boot image. To do this follow these steps

  1. In the SCCM console go to \Software Library\Overview\Operating Systems\Boot Images
  2. Right click on the boot image you want to inject the driver in to and select properties
  3. Click the drivers tab
  4. Click the sun icon
    boot image properties
  5. On the next page only select the drivers you need
    select a driver
  6. Click ok
  7. Listed in the drivers tab will be all the drivers that will get injected to the boot image
  8. Review all the drivers on the list making sure to remove any that are not needed (Very important)
    listed drivers
  9. Click ok
  10. You will get prompted to update distribution points
  11. Click yes
    update distribution points
  12. On the update distribution points with this boot image screen tick the box “Reload this boot image with the current Windows PE Version from the Windows ADK”
  13. Click next
    update distribution points with this image

    If you need to update Windows ADK to the latest version then take a look at this article on how to do that

  14. Click Next
  15. Click close
  16. Right click on the boot image and select distribute content
    distribute content
  17. Click next
  18. Select the required distribution points
  19. Click next
    select distribution points
  20. Click next
  21. Click close
  22. Wait for the boot image to distribute
  23. Confirm the boot image distributed successfully to all distribution points

Best Practices

When it comes to device drivers and boot images there are a few best practices I have learned over the years of working with SCCM which are.

Only Inject Network & Storage Drivers

I have only ever needed to inject network and storage drivers in to the boot image.  I have never had any other issues such as display not working, image not applying and so on.

Don’t Add Drivers For New Hardware

If you have a new hardware model you need to add to your SCCM don’t add the drivers in to the boot image.

Add the hardware model device driver to the task sequence (Guide Here) but not in to the boot image.

I recommend you test the task sequence first without adding the device driver in to the boot image, then if the task sequence fails and the error is related to drivers in the boot image then I would add the drivers.

Create New Boot Image

If you do require to add drivers to the boot image I find it easier to create a new boot image by copying the existing production boot image, then inject the drivers in to this new boot image, then assign this boot image to your task sequence.

This way if there are issues with the new boot image you can quickly roll back to the known working boot image,

Leave a Comment