Forum Discussion
AB21805
Apr 29, 2021Bronze Contributor
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
Apr 29, 2021
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 }
AB21805
Apr 29, 2021Bronze Contributor
Hi Rudy, Itll be a exe driver I want to deploy?