Windows 10: How to restore drivers backed up via Dism /Online /Export-Driver

Discus and support How to restore drivers backed up via Dism /Online /Export-Driver in Windows 10 Drivers and Hardware to solve the problem; If I backup my drivers on my Win 10 Pro X64 system using Dism /Online /Export-Driver /Destination*Biggrin:\Lenovo_Drivers how do I restore them... Discussion in 'Windows 10 Drivers and Hardware' started by Ztruker, Feb 14, 2016.

  1. Ztruker Win User

    How to restore drivers backed up via Dism /Online /Export-Driver


    If I backup my drivers on my Win 10 Pro X64 system using

    Dism /Online /Export-Driver /Destination*Biggrin:\Lenovo_Drivers

    how do I restore them after I do a clean install? I've seen lots of tutorials on how to backup but nothing on how to restore when needed?

    :)
     
    Ztruker, Feb 14, 2016
    #1
  2. Rohn007 Win User

    Windows 10 Pro

    What do you want to repair?

    https://www.lifewire.com/how-do-i-automatically...

    There are also a number of built in and downloadable from MS "Trouble shooter" applets for specific problems.

    There is also a manual process you can run from the command application using the DISM and Chkdsk commands.

    SIMPLE, 1ST STEP IN TROUBLE SHOOTING- CHKDSK AND DISM

    Press Windows key + X

    Click on “Command Prompt (Admin)”

    Type (or paste) and press <enter> to Scan the integrity of all protected system files and replace incorrect versions with correct Microsoft versions.

    SFC /SCANNOW

    Then run next command to check the disk and display a status report.:

    Chkdsk c: /F

    You will have to restart the computer for that check to work.

    Repair The Installed Windows Image

    After ChkDsk is done go back to the admin prompt and run following commands, one at a time

    Dism /Online /Cleanup-Image /CheckHealth

    Dism /Online /Cleanup-Image /ScanHealth

    Dism /Online /Cleanup-Image /RestoreHealth

    MANAGE DISM WITH THE COMMAND PROMPT / POWERSHELL

    Software: Windows 8 & 10 | Last modified on 2017-03-21

    A guide to using the Deployment Image Servicing and Management tool with the Command Prompt or PowerShell.

    REPAIR THE INSTALLED WINDOWS IMAGE

    1. Open the Command Prompt (Admin) or PowerShell (Admin).

    • Execute dism.exe /Online /Cleanup-Image /CheckHealth to check whether the image has been flagged as corrupted by a failed process and whether the corruption can be repaired.

    • Execute dism.exe /Online /Cleanup-Image /ScanHealth to scan the image for component store corruption.

    • Execute dism.exe /Online /Cleanup-Image /RestoreHealth to scan the image for component store corruption, and then perform repair operations automatically.

    VIEW & EXPORT INSTALLED DRIVERS

    1. Open the Command Prompt (Admin) or PowerShell (Admin).

    • Execute dism.exe /Online /Get-Drivers to display information about all drivers in an offline image or a running operating system.

    • Execute dism.exe /Online /Export-Driver /DestinationHow to restore drivers backed up via Dism /Online /Export-Driver :path to export all third-party driver packages from an offline image or a running operating system.

    Example: dism.exe /Online /Export-Driver /Destination:C:\Drivers\Backup

    Replace Path with the location where you want to save the drivers.

    IMPORT & EXPORT FILE EXTENSION TYPE ASSOCIATIONS

    1. Open the Command Prompt (Admin) or PowerShell (Admin).

    • Execute dism.exe /Online /Export-DefaultAppAssociationsHow to restore drivers backed up via Dism /Online /Export-Driver :path to export the default application associations from a running operating system.

    Example: dism.exe /Online /Export-DefaultAppAssociations:C:\Extensions\Backup.xml

    Replace Path with the location where you want to save the file.

    • Execute dism.exe /Online /Import-DefaultAppAssociationsHow to restore drivers backed up via Dism /Online /Export-Driver :path to import a set of default application associations to a Windows image.

    Example: dism.exe /Online /Import-DefaultAppAssociations:C:\Extensions\Backup.xml

    Replace Path with the location where you’ve saved the file.
     
    Rohn007, Feb 14, 2016
    #2
  3. 'Mike P Win User
    Windows 10, major issues.

    I might try backing up drivers when things are working normal;

    PowerShell

    Export-WindowsDriver -Online -Destination
    X:\Drivers (change drive letter)

    Then when windows updates again, go to device manager and update the wifi driver and force it to find that x:/Drivers folder and hope things become happy.
     
    'Mike P, Feb 14, 2016
    #3
  4. lx07 Win User

    How to restore drivers backed up via Dism /Online /Export-Driver

    Dism /online /Add-Driver /DriverHow to restore drivers backed up via Dism /Online /Export-Driver :D:\Lenovo_Drivers /Recurse

    The /recurse adds all. If you wanted just the one (for some reason) you'd specify the relevant subdirectory inside Lenovo_Drivers.
     
  5. Kyhi Win User
    Or you can use Device Manager > select the unknown device > point to your Driver folder..
    windows will do the rest..
     
  6. lx07 Win User
    Assuming that only the drivers with yellow question marks are the only ones you want to update.

    In my case my SD card reader looks fine on device manager but doesn't work until I install the correct driver.

    If you export the drivers you may as well import them.
     
  7. Ztruker Win User
    Thanks to both of you. I'll want to import all of them as my computer works great as far as devices is concerned. I'l going to clean install to fix another problem.
     
    Ztruker, Feb 14, 2016
    #7
  8. Kyhi Win User

    How to restore drivers backed up via Dism /Online /Export-Driver

    Unless there are several older versions of the driver in the database-
    Then you end up with several versions of the driver in the OS database...

    Using Device manager will install just the newest version in the database in to the OS
     
  9. lx07 Win User
    You can run through them with pnputil or DriverStore Explorer and delete the ones you don't want. Either before or after.
     
  10. OldMike65 Win User
    Viewing that link for driverstore, it reports that its only been tested on Windows 7 and vista.....does not mention anything about working on Windows 10 ?? *sarc
     
    OldMike65, Feb 14, 2016
    #10
  11. lx07 Win User
    It does exactly the same. If you really wanted you could use powershell add-windowsdriver if you wanted to be (mildy) up to date.

    The powershell commands only dism anyway though so no point unless you prefer the syntax.

    Here you go then - what is the difference: Code: Dism /Add-Driver /DriverHow to restore drivers backed up via Dism /Online /Export-Driver :D:\Lenovo_Drivers /Recurse[/quote] or Code: Add-WindowsDriver -Driver D:\Lenovo_Drivers -Recurse[/quote] Only difference is - or /. The same thing is done anyway.

    To be honest with you. I use pnputil.exe or powershell. I find the dism syntax confusing. Backwards and forwards with the slash thing. Then you have a colon. Or a semi. Seems a bit dodgy to me.

    All of them do the same thing though so it makes (as they say) no odds either way.
     
  12. OldMike65 Win User
    or Code: Add-WindowsDriver -Driver D:\Lenovo_Drivers -Recurse[/quote] Only difference is - or /. The same thing is done anyway.

    To be honest with you. I use pnputil.exe or powershell. I find the dism syntax confusing. Backwards and forwards with the slash thing. Then you have a colon. Or a semi. Seems a bit dodgy to me.

    All of them do the same thing though so it makes (as they say) no odds either way.[/quote] Nope if you tell me that Driverstore works, that's good enough for me *Smile

    Darn it the program needs Net Frame work 3.5 installed to run. Don't know if I want to install that for just one program.
     
    OldMike65, Apr 5, 2018
    #12
Thema:

How to restore drivers backed up via Dism /Online /Export-Driver

Loading...
  1. How to restore drivers backed up via Dism /Online /Export-Driver - Similar Threads - restore drivers backed

  2. Cannot repair Windows via DISM, no solutions online

    in Windows 10 Gaming
    Cannot repair Windows via DISM, no solutions online: Hello, I'm having issues with corrupted Windows files the PC is working fine, but letting disk check run makes it unusable every time, so I have to solve it another way.After running this:Dism /Online /Cleanup-Image /RestoreHealth /Source:c:\wim\install.wimHere's what my DISM...
  3. Cannot repair Windows via DISM, no solutions online

    in Windows 10 Software and Apps
    Cannot repair Windows via DISM, no solutions online: Hello, I'm having issues with corrupted Windows files the PC is working fine, but letting disk check run makes it unusable every time, so I have to solve it another way.After running this:Dism /Online /Cleanup-Image /RestoreHealth /Source:c:\wim\install.wimHere's what my DISM...
  4. How to Export Drivers using DISM in Windows 11

    in Windows 10 News
    How to Export Drivers using DISM in Windows 11: [ATTACH]Drivers are one of the most critical parts of the Operating System, allowing interfaces and hardware to talk. If you don’t install the OEMs driver, Microsoft uses the generic drivers, but it will still miss the custom functionality. Along with this, many develop...
  5. How To Restore Drivers Back From Backup

    in Windows 10 Drivers and Hardware
    How To Restore Drivers Back From Backup: HiI created a backup of my drivers using cmd because wanted To reinstall windows. When I installed windows 10 again i am not able to restore drivers.Please Tell a way so that i can restore all of my drivers in one click....
  6. How to export Windows drivers using DISM

    in Windows 10 News
    How to export Windows drivers using DISM: Did you know that you can use the built-in tool DISM on Windows machines to export drivers? Windows comes with a set of drivers to make sure that most hardware devices work out of the box. Manufacturers create drivers for their devices that users may install; these may add...
  7. How to back up Printer drivers and queues on Windows

    in Windows 10 News
    How to back up Printer drivers and queues on Windows: Printer migration has been a part of the Windows operating system for a long time. Designed to back up printer drivers, ports and queues to move them to another device, printer migration is a useful feature especially in corporate environments. The functionality is powered...
  8. restoring driver

    in Windows 10 Drivers and Hardware
    restoring driver: i uninstall my hid keyboard driver by mistake how can i get it back without restoring https://answers.microsoft.com/en-us/windows/forum/all/restoring-driver/d0fd2ca4-5540-4f64-8c23-9443e5226025
  9. Backing Up Drivers

    in Windows 10 Drivers and Hardware
    Backing Up Drivers: Since original thread was very old, decided to start new one. My solution to backing up drivers...use Powershell as follows: Export-WindowsDriver -Online -Destination X:\Directory Replace X:\Directory with you location for driver backup. Run Powershell with...
  10. How to set up a source for A repair via DISM

    in Windows 10 Performance & Maintenance
    How to set up a source for A repair via DISM: I have some corrupted Op Sys files in my desktop that cannot be repaired via SFC/scannow and am trying to do so by DISM using the windows folder in my laptop but I cannot figure out how to use the source option to repair my desktop. I have perused the DISM.exe /? info but it...

Users found this page by searching for:

  1. dism add and remove drivers

    ,
  2. dism import backed drivers

    ,
  3. DISM /online /export-driver /destination:C:\

    ,
  4. dism /online /export-driver /destination:C:\drivers-backup error 38