Powershell: Easily export your Windows Drivers

I was looking for a simple solution for me to export (and import later) my Windows driver. I already knew that Windows 2016 had a Powershell command for that but didn’t knew that it also worked for Windows Server 2012R2 and Windows 10!

Use the following command : Export-WindowsDriver -Destination “C:\Drivers\$((Get-WmiObject -Class win32_computersystem).Model)” -Online

export_drivers

Notice the exported drivers:

export_drivers2

Now you can easily import those drivers in (for example) SCCM or MDT.

 

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.