step-by-step command to back up drivers in win
Step 1: Open Command Prompt as Administrator
- Press
Windows Key + Xand select Command Prompt (Admin) or Windows PowerShell (Admin). - Alternatively, you can search for "cmd", right-click on Command Prompt, and choose Run as administrator.
Step 2: Export Drivers to a Folder
Use the DISM command to export drivers. For example, to export drivers to C:\Backup\Drivers:
/Online: Specifies that you are working with the currently running system./Export-Driver: Tells DISM to export the drivers./Destination:C:\Backup\Drivers: Specifies the destination folder where drivers will be saved (you can changeC:\Backup\Driversto any path you prefer).
Make sure the folder C:\Backup\Drivers exists before running the command or create it with mkdir:
Step 3: Verify the Backup
The drivers will be exported to the folder you specified (e.g., C:\Backup\Drivers). You can navigate to that folder to ensure all driver files are copied.
Additional Information
This method backs up all the device drivers currently installed on your system.
If you want to restore these drivers later, you can use the following command:
This will reinstall the drivers from the backup folder.
Let me know if you need further assistance!
Comments
Post a Comment