Forum Discussion
Pushing out drivers via intune
Hi all,
Is it possible to push out drivers via intune? If so how can I do this?
Thanks in advance
Hi, What kind of drivers would you like to push/install? if I may ask
You could create a win32 app intunewinapp package and add the folder with drivers to it
And you could add a PowerShell script to install the drivers
Add-WindowsDriver -Path "c:\offline" -Driver "c:\test\drivers" -Recurse
Or
Get-ChildItem "C:\Driver File Location" -Recurse -Filter "*inf" | ForEach-Object { PNPUtil.exe /add-driver $_.FullName /install }
- AB21805Bronze ContributorHi Rudy, Itll be a exe driver I want to deploy?
Hi, can the exe be silently installed or do you have to answer some questions or press next etc?
If it is not silently take a look at this blog: https://call4cloud.nl/2020/11/company-app-unchained
If you look at the end of the blog, I did the same with a brother printer driver which could not be installed automatically
- Christian_HemkenCopper ContributorIf you have Lenovo devices in your fleet, you can have a look into the posts from Phil Jorgensen @ https://thinkdeploy.blogspot.com
There are probably other solutions by other OEMs. - NicklasAhlbergBrass ContributorHello, hardware applications can typically be installed the same way you install an app. Have you had a look at using Windows Update for Business to install certified drivers?
//Nicklas - matt91070Brass Contributor
You can use Microsoft-Win32-Content-Prep-Tool to change (.exe) file to an intunewin file and upload it to Intune.