Forum Discussion
Pushing out drivers via intune
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 }
- AB21805Apr 29, 2021Bronze ContributorHi Rudy, Itll be a exe driver I want to deploy?
- Apr 29, 2021
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
- AB21805Apr 29, 2021Bronze Contributor
So its a intel wifi driver which I just need updating/installing (wifi currently works on devices, this is just a few onprem having issues with our wifi set up so when off site itll install) , next has to be clicked but I can export this and use the files within. If I use the exported files can it be easier to install. Maybe via the win32 app route and if so how can I do this? its a HP wifi SP104315
Thanks in advance