Drivers as applications
Unfortunately, all drivers don't adhere to the usual .inf
/.sys
format, and in this case, the MDT driver injection method will not apply to these drivers. What I'm referring to is drivers that install via a .exe
format and cannot be extracted to the usual .inf
/.sys
format that we are used to. In this case, we need to treat these drivers as applications. Let's say, for example, I have a trackpad driver for a particular laptop that I need to install and the driver installation program must be installed via a .exe
program. I can import a new application into MDT. The command line must be configured to perform a silent install and you should also check the box in the application's Properties to hide the application so that it will not show up during the LiteTouch Deployment wizard. We will add the driver to our Task Sequence as follows:
Now, to ensure that this application/driver only gets installed on the machines that we need to install it on, we can take advantage...