06 September, 2019

by Updated on 06 September, 2019 14 comments

How To Backup And Restore Windows Drivers Without Any Software

You can back up all the device drivers installed on your current working system configuration without any software and also restore them if you format the operating system for any reason.
Do these simple steps:

Backup and Restore Windows System Drivers Without Any Software


Update: This only works with drivers installed using INF files. If you have installed any MSI pack, those drivers will be skipped.


Backup Drivers:

1. Run Windows command prompt or Windows PowerShell (Admin) with elevated admin permission. (Right on the start button or Win+X key) 


2. Create a new folder where you want to back up all the drivers. Note that there should not be any space in the name of the folder. Ex. Driver backup is fine. But not Driver Backup.
3. Run this command:
dism /online /export-driver /destination:C:\Users\pravi\Downloads\Driverbackup
4. Change the destination address as per your folder location.



5. You will get the successful backup message.
6. Browse to the destination folder to check what you have. You can copy all those files to any other location.


Restore All Drivers:

1. Run command prompt with admin rights.
2. Execute this command:
Dism /online /Add-Driver /Driver:C:\Users\pravi\Downloads\Driverbackup/Recurse
3. This will restore all your drivers.


Restore Selective Drivers:

If you want to install only a few of the drivers, you can manually install them by the traditional method.

  • Open the power menu (Right-click on the start button or Win+X keys). >> Device manager >> select the device you want to install drivers for >> Double click >> Drivers Tab >> Update Drivers >> Browse my computer for drivers software >> Next.
Browse for device drivers

Windows will automatically search for correct drivers and install it.
There is much software to do this task, but I think this is the best and easy one. What you think?
About The Author
Passionate Technology Blogger. Not a profession. Find only real life useful and simplified Tech articles, How-To's on TopTrix.

14 comments:

  1. I got this error....
    dism-export-image-option-is-unknown

    ReplyDelete
  2. Please check that, there is space before /online, /Add-Driver, and /Driver.
    Also check your folder path is correct.

    ReplyDelete
  3. @Pravin Vibhute
    I think I understand. Question: why should I undertake such an action? Backup and restore the same drivers? What is the meaning when one is already backing up the whole system or already making an .iso file? I don't get it.
    Thanks anyway.

    ReplyDelete
    Replies
    1. If you are doing full system ISO backup, then, I don't think this is useful for you. But no everyone do that regularly.
      There may be different situations and requirements everyone have. this will be a extra backup if you have updated the system drivers those are not included in the original OEM installation.

      Delete
  4. I think would very useful on servers. Is this a standard command?

    ReplyDelete
  5. good but you cant use the Dism /online /Add-Driver /Driver:C:\Users\pravi\Downloads\Driverbackup/Recurse as it says it has to be ofline only so cant add the drivers so pointless

    ReplyDelete
    Replies
    1. True. You can not backup the propitiatory drivers.

      Delete
  6. I can't make it work : it goes to the point where I see : Image version and it stops there...

    ReplyDelete