Here are three ways to backup all installed drivers. Change the path or create this export folder first. All of these need you to run them as Administrator.
Copy to Clipboard
dism /online /export-driver /destination:"C:\Drivers\Export" Copy to Clipboard
pnputil /export-driver * "C:\Drivers\Export" This one is in Powershell: Copy to Clipboard
Export-WindowsDriver -Online -Destination "C:\Drivers\Export" Here is a way to backup drivers from an offline system (an example is if you take a drive and plug it into another system to save the drivers: Copy to Clipboard Export-WindowsDriver -Path D:\Windows -Destination "C:\Drivers\Export" |