Search For A Solution!

Total Pageviews

Monday, November 29, 2021

HOW TO: Backup or Export your Windows 10 Drivers for future use

With powershell as admin:

Export-WindowsDriver -Online -Destination D:\MyWin10Drivers 


or 

With CMD as admin

Export your drivers In Command Prompt, enter:

dism /online /export-driver /destination:"D:\DriversBackup"


TIP:
Create Drivers Table list with /all for all drivers or just for the specific exported by the DISM tool

1. Dism /online /Get-Drivers /all /Format:Table > d:\MyDriversTable.txt

2. Dism /online /Get-Drivers /Format:Table > d:\MyDriversTable.txt

No comments:

Post a Comment