How to export third-party driver packages using PowerShell

Windows 8.1 Update introduces a new cmdlet that allows you to export third-party drivers that are located within the driver store of a Windows client.

$ExpDrv = Export-WindowsDriver -Online -Destination c:\temp\3rdpartydrivers 

The result, all drivers exported into the provided destination directory

2014-04-04_21h36_47

Now we have a whole bunch of folders, but what drivers did we actually export?

$ExpDrv | Select-Object ClassName, ProviderName, Date, Version | Sort-Object ClassName

2014-04-04_21h40_00

For more information read the What’s new in DISM article here

One Reply to “How to export third-party driver packages using PowerShell”

Leave a Reply