264 words
1 min read

Export Drivers Using Windows PowerShell

Intel Cover: Export Drivers Using Windows PowerShell

This article is for those looking for a detailed and clear guide on how to export drivers using Windows PowerShell.

The ability to export third-party drivers using PowerShell using the Export-WindowsDriver cmdlet was first introduced with Update 1 for Windows 8.1 and Windows Server 2012 R2. This great feature is also present on later operating systems from Microsoft.

Exported drivers can be useful for manual installation on new computers or using automated solutions. In addition, drivers can be added to the Windows installation image.

NOTE

The guide will discuss the export of drivers with their description.

We go into the system under an account with administrator rights.

On the keyboard, press the key combination “Win” and “x” and in the menu that opens, select “Windows PowerShell (Admin)”.

Export Drivers Using Windows PowerShell - Step 1

Click on the “Yes” button.

Export Drivers Using Windows PowerShell - Step 2

NOTE

In this manual, the drivers and their descriptions will be exported to the “Temp” folder on the “C” drive. The description of the exported drivers will be saved to the “drivers.txt” file.

Let’s prepare the variable using the command:

Terminal window
$drivers = Export-WindowsDriver -Online -Destination C:\Temp\drivers

Export Drivers Using Windows PowerShell - Step 3

We export the drivers using the command:

Terminal window
$drivers | ft ProviderName, ClassName, Date, Version -auto | Out-File C:\Temp\Drivers\drivers.txt

Export Drivers Using Windows PowerShell - Step 4

The drivers and their descriptions have been successfully exported to the “Temp” folder on the “C” drive.

Export Drivers Using Windows PowerShell - Step 5

Export Drivers Using Windows PowerShell - Step 6


SIGNAL & INTEL#


Telegram — Strategic IntelYouTube — Visual DoctrineDiscord — Engineering Elite

DOCKER CAPTAIN  ·  HASHICORP AMBASSADOR  ·  AWS COMMUNITY BUILDER

Export Drivers Using Windows PowerShell
https://www.heyvaldemar.com/export-drivers-using-windows-powershell/
Architect
Vladimir Mikhalev
Issued
2021-02-10
Protocol
CC BY-NC-SA 4.0