Backup and Restore Backup and Restore Device Drivers in Windows 11

  • Thread starter Thread starter Brink
  • Start date Published: Start date Updated Updated:
  • Tags Tags
    driver

Device_Manager_banner.png

This tutorial will show you how to back up and restore all 3rd party device drivers on your Windows 10 and Windows 11 PC.

If you clean install Windows, you will need to install drivers for each device in the system. Some of these device drivers may no longer be available from the manufacturer, or you misplaced a backup of the driver installation file from the manufacturer.

It would be a good idea to back up your device drivers before doing a clean install to make it easy to restore any of these drivers as needed afterwards.


You must be signed in as an administrator to backup and restore drivers.



Contents

  • Option One: Back Up All Device Drivers using DISM Command
  • Option Two: Back Up All Device Drivers using pnputil Command
  • Option Three: Back Up All Device Drivers using Export-WindowsDriver Command
  • Option Four: Restore Specific Device Driver in Device Manager
  • Option Five: Restore All Device Drivers in Device Manager
  • Option Six: Restore All Device Drivers using pnputil Command




Option One

Back Up All Device Drivers using DISM Command



1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Type the command below into Windows Terminal (Admin), and press Enter. (see screenshots below)

dism /online /export-driver /destination:"full path of folder"

Substitute full path of folder in the command above with the actual full path of the already existing folder (ex: "C:\Users\Brink\Desktop\My Drivers") you want to export all 3rd party device drivers into. If this folder doesn't currently exist, you will need to create it first before running the command.

For example: dism /online /export-driver /destination:"C:\Users\Brink\Desktop\My Drivers"


3 When exporting has finished, you can close Windows Terminal (Admin) if you like.

Backup_drivers_with_DISM_command-1.png
Backup_drivers_with_DISM_command-2.png





Option Two

Back Up All Device Drivers using pnputil Command



1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Type the command below into Windows Terminal (Admin), and press Enter. (see screenshots below)

pnputil /export-driver * "full path of folder"

Substitute full path of folder in the command above with the actual full path of the already existing folder (ex: "C:\Users\Brink\Desktop\My Drivers") you want to export all 3rd party device drivers into. If this folder doesn't currently exist, you will need to create it first before running the command.

For example: pnputil /export-driver * "C:\Users\Brink\Desktop\My Drivers"


3 When exporting has finished, you can close Windows Terminal (Admin) if you like.

Backup_drivers_with_pnputil_command-1.png
Backup_drivers_with_pnputil_command-2.png





Option Three

Back Up All Device Drivers using Export-WindowsDriver Command



1 Open Windows Terminal (Admin), and select Windows PowerShell.

2 Type the command below into Windows Terminal (Admin), and press Enter. (see screenshots below).

Export-WindowsDriver -Online -Destination "full path of folder"

Substitute full path of folder in the command above with the actual full path of the already existing folder (ex: "C:\Users\Brink\Desktop\My Drivers") you want to export all 3rd party device drivers into. If this folder doesn't currently exist, you will need to create it first before running the command.

For example: Export-WindowsDriver -Online -Destination "C:\Users\Brink\Desktop\My Drivers"


3 When exporting has finished, you can close Windows Terminal (Admin) if you like.

Backup_drivers_with_Export-WindowsDriver_command-1.png
Backup_drivers_with_Export-WindowsDriver_command-2.png





Option Four

Restore Specific Device Driver in Device Manager


1 Open Device Manager (devmgmt.msc).

2 Right click on the device (ex: "Logitech BRIO") you want to update its driver, and click/tap on Update driver. (see screenshot below)

Restore_driver_Device_Manager-1.png

3 Click/tap on Browse my computer for drivers. (see screenshot below)

Restore_driver_Device_Manager-2.png

4 Perform the following steps to select your drivers backup folder: (see screenshots below)
  1. Click/tap on the Browse button.
  2. Navigate to and select the folder (ex: "C:\Users\Brink\Desktop\My Drivers") containing your device drivers backup.
  3. Click/tap on OK.
  4. Check the Include subfolders box.
  5. Click/tap on Next.
Restore_driver_Device_Manager-3.png
Restore_driver_Device_Manager-4.png

5 Device Manager will now search for and install the device driver if it's newer than what is currently installed. (see screenshots below)

Restore_driver_Device_Manager-5.png
Restore_driver_Device_Manager-6.png

6 When you have finished restoring device driver backups, you can close Device Manager if you like.




Option Five

Restore All Device Drivers in Device Manager


1 Open Device Manager (devmgmt.msc).

2 Perform one of the following actions: (see screenshots below)
  • Right click on the computer name, and click/tap on Add drivers.
  • Right click on Action on the menu bar, and click/tap on Add drivers.
Device_Manager_Add_Drivers-1.png
Device_Manager_Add_Drivers-2.png

3 Perform the following steps to select your drivers backup folder: (see screenshots below)
  1. Click/tap on the Browse button.
  2. Navigate to and select the folder (ex: "C:\Users\Brink\Desktop\My Drivers") containing your device drivers backup.
  3. Click/tap on OK.
  4. Check the Include subfolders box.
  5. Click/tap on Next.
Device_Manager_Add_Drivers-3.png
Device_Manager_Add_Drivers-4.png

4 Device Manager will now search for and install the device drivers. (see screenshot below)

Device_Manager_Add_Drivers-5.png

5 When the drivers have successfully finished installing, click/tap on Close. (see screenshot below)

Device_Manager_Add_Drivers-6.png

6 You can now close Device Manager if you like.




Option Six

Restore All Device Drivers using pnputil Command



1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Type the command below into Windows Terminal (Admin), and press Enter.

pnputil /add-driver "full path of folder\*.inf" /subdirs /install /reboot

Substitute full path of folder in the command above with the actual full path of the folder (ex: "C:\Users\Brink\Desktop\My Drivers") you exported all 3rd party device drivers into.

For example: pnputil /add-driver "C:\Users\Brink\Desktop\My Drivers\*.inf" /subdirs /install /reboot


The /reboot parameter in the command above will automatically restart the computer if needed to complete the operation of importing the drivers.

Be sure you save and close anything open before running this command.


3 When importing has finished, you can close Windows Terminal (Admin) if you like.


That's it,
Shawn Brink


 
Last edited:
Hey Brink, for years I have used a tiny portable app called Double Driver Backup and Restore that backs up all drivers and any software packages associated with them. It's great for powershell deficient people like me because it does it all with one click of the mouse. What I like most about it is its ease of use and the way it lays out my devices in structured folders so I can make sense of it if I want to restore only a single driver. It's an old app but still works perfectly in 10 & 11. For anyone who wants to use it, the dd.exe file has to be run as administrator.
@glasskuter Thanks! I need to bring up that old SATA spinner from the basement. I think I saved that utility years ago. If not, @Brink has provided a great solution for a clean Win11 install. Thinking again, using DISM, which I just did, and then using devmgmt.msc to restore the drivers sounds easier.
 

My Computer

System One

  • OS
    Windows 11 Pro 23H2 (OS Build [22631.4751])
    Computer type
    PC/Desktop
    Manufacturer/Model
    CyberPower Inc.
    CPU
    Intel Core i5-11600KF
    Motherboard
    MSI MPG Z590 Gaming Carbon WIFI
    Memory
    48GB DDR4-2667 = 2x8 Patriot + 2x16 G.Skill
    Graphics Card(s)
    Nvidia GeForce RTX 3060
    Sound Card
    All on-board: Nvidia High-def Audio, Nvidia Virtual Audio Device, Realtek USB Audio
    Monitor(s) Displays
    LG 32GN63T-Baus
    Screen Resolution
    2560 x 1440
    Hard Drives
    GP-ASM2NE6100TTTD GIGABYTE AORUS NVMe Gen4 M.2 1TB PCI-E 4.0, CT250MX500SSD1, CT1000MX500SSD1, 2x NVMe Gen3 M.2 NE-256 2280, 1x NVMe Gen3 M.2 NE-1TB 2280
    PSU
    EVGA 600W Gold 80 Plus
    Case
    Phantek Eclipse P600S Silent ATX
    Cooling
    Phantek PH-TC12DX U-Type Dual
    Keyboard
    NOHI 01 MODEL:KB-161-306
    Mouse
    CyberPowerPC Elite M1-131
    Internet Speed
    DL 827.77Mbps, UL 23.93 Mbps, Ping 4ms
    Browser
    Firefox 134.0.2 (64-bit)
    Antivirus
    Emsisoft Anti-Malware Home
Hello. I have a question about driver backups. If I image my disk (such as using Macrium Reflect), if I re-install that image, or transfer it to a new larger NVme on the same computer, aren't all the drivers already contained in the image backup, so they will automatically be there when the image is restored? I am thinking the only hardware difference will be the new NVme drive. I am confused by this as there are mentions in some of the above posts about having to install the drivers after changing disks. Sorry for my ignnorance on this. I plan to install a new Nvme drive tomorrow as my old one says health is 3%, plus it is too small. So if I also have to back up drivers as well as have the disk imaged, then I need to do it before I install the new one. Thanks.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion 15-cs3063cl
Hello. I have a question about driver backups. If I image my disk (such as using Macrium Reflect), if I re-install that image, or transfer it to a new larger NVme on the same computer, aren't all the drivers already contained in the image backup, so they will automatically be there when the image is restored? I am thinking the only hardware difference will be the new NVme drive. I am confused by this as there are mentions in some of the above posts about having to install the drivers after changing disks. Sorry for my ignnorance on this. I plan to install a new Nvme drive tomorrow as my old one says health is 3%, plus it is too small. So if I also have to back up drivers as well as have the disk imaged, then I need to do it before I install the new one. Thanks.

Hello, and welcome. :alien:

Correct. Any current drivers will be included in the system image created by Macrium Reflect, and will be restored along with the image.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Will this back up things like Intel or HP firmware as well? Or is that not actually a driver? Those are the things I can never find to install.
 

My Computers

System One System Two

  • OS
    Windows 11 Home 25H2
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion 14-ce3606sa
    CPU
    Core i5-1035G1
    Memory
    32gb
    Hard Drives
    Samsung 870 evo sata ssd
    Cooling
    Could be better
    Internet Speed
    50 mbps Starlink
    Browser
    Firefox
    Other Info
    Originally came installed with a 500gb H10 Optane ssd
  • Operating System
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion ce3606sa
    CPU
    Intel Core i5-1035G1
    Memory
    16gb
    Hard Drives
    Hynix Gold P31 2TB
    Internet Speed
    200mbps Starlink
    Browser
    Firefox
    Antivirus
    Defender
Will this back up things like Intel or HP firmware as well? Or is that not actually a driver? Those are the things I can never find to install.

Hello, :alien:

I'm afraid it doesn't include firmware. Only drivers.

Usually, you can find firmware downloads at the manufacturer's site for your motherboard or OEM PC.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Thank you.
 

My Computers

System One System Two

  • OS
    Windows 11 Home 25H2
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion 14-ce3606sa
    CPU
    Core i5-1035G1
    Memory
    32gb
    Hard Drives
    Samsung 870 evo sata ssd
    Cooling
    Could be better
    Internet Speed
    50 mbps Starlink
    Browser
    Firefox
    Other Info
    Originally came installed with a 500gb H10 Optane ssd
  • Operating System
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion ce3606sa
    CPU
    Intel Core i5-1035G1
    Memory
    16gb
    Hard Drives
    Hynix Gold P31 2TB
    Internet Speed
    200mbps Starlink
    Browser
    Firefox
    Antivirus
    Defender

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Thanks @Brink for the great write up. A few additional questions please

Firstly are the commands
Powershell:
pnputil /export-driver * "full path of folder"
and
Powershell:
dism /online /export-driver /destination:"full path of folder"
, do the same thing? Are they equal? Should one, for example pnputil be preferred over there other, for example dism?

Secondly sometimes drivers have catalog files, i.e. .cat, cabinet files, i.e. .cab, and system files, i.e. .sys. Do both of these tools, i.e. pnputil and dism back them up too?
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    CPU
    Intel
    Memory
    16 GB
    Graphics Card(s)
    Intel UHD Integrated
    Mouse
    Inbuilt
    Browser
    Firefox
    Antivirus
    Microsoft Defender
Firstly are the commands
Powershell:
pnputil /export-driver * "full path of folder"
and
Powershell:
dism /online /export-driver /destination:"full path of folder"
, do the same thing? Are they equal? Should one, for example pnputil be preferred over there other, for example dism?

The DISM command includes the .pnf files, if they exist, but the pnputil command does not. You don't need these files to install the drivers though.

Secondly sometimes drivers have catalog files, i.e. .cat, cabinet files, i.e. .cab, and system files, i.e. .sys. Do both of these tools, i.e. pnputil and dism back them up too?

Those files and more.

You can run either one, or both, and see what gets copied for your system.
 

My Computer

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Intel NUC12WSHi7
    CPU
    12th Gen Core i7-1260P
    Motherboard
    NUC12WSBi7
    Memory
    64 GB Micron PC4-25600
    Graphics Card(s)
    Intel Iris Xe Graphics
    Sound Card
    on-board Realtek HD Audio
    Monitor(s) Displays
    Dell U3219Q
    Screen Resolution
    3840 x 2160
    Hard Drives
    Samsung SSD 990 PRO 1TB
    Crucial MX500 2 TB
    Antivirus
    Microsoft Defender
The DISM command includes the .pnf files, if they exist, but the pnputil command does not. You don't need these files to install the drivers though.



Those files and more.

You can run either one, or both, and see what gets copied for your system.
So yes I ran both of these commands. dism does copy more files which pnputil seem to miss out. Including .pnf files. Also some inf files were missed out too by pnputil command.

So if we can backup our drivers with dism then does it simply eliminate the need to have System Restore? System Restore does seem to have a vulnerability that it can be infected by Malware. That is why Recover drives, MCT and System images are so crucial, especially those which are kept in a disconnected state.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    CPU
    Intel
    Memory
    16 GB
    Graphics Card(s)
    Intel UHD Integrated
    Mouse
    Inbuilt
    Browser
    Firefox
    Antivirus
    Microsoft Defender
So yes I ran both of these commands. dism does copy more files which pnputil seem to miss out. Including .pnf files. Also some inf files were missed out too by pnputil command.

So if we can backup our drivers with dism then does it simply eliminate the need to have System Restore? System Restore does seem to have a vulnerability that it can be infected by Malware. That is why Recover drives, MCT and System images are so crucial, especially those which are kept in a disconnected state.

Personally, I find keeping updated installation files for the drivers saved to another drive as a backup the safest and easiest way. This way you can just reinstall them as needed.

Otherwise, either the DISM and/or pnputil command is good for backing up drivers you don't have installation files for.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Thanks for this Thread. I have this question:
For a scenario of a new computer in Smode or a Computer that wouldn't boot.
If wanted to back up drivers before doing a clean install.
I assume one could do that by booting to a bootable WinPE USB and exporting drivers from the offline image with Powershell,
PS C:\> Export-WindowsDriver -Path c:\offline-image -Destination d:\WhateverPC\Drivers

What would be the "-Path" of the-> c:\offline image (?)
Would that be one of these,
C:\Windows\System32\drivers\
C:\Windows\System32\DriverStore\FileRepository\
C:\Windows\System32\spool\drivers\
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    HP 17" Laptop, Acer Aspire 5
1. Normally if there's a readable Windows volume on the primary disk, WinPE will mount it as C: drive.

But you have to be careful that your WinPE (boot.wim) has the correct storage drivers, ie. Intel RST. Otherwise the drive order (and numbering) could be different than expected, resulting in a different drive letter than C:

2. WinPE doesn't include PowerShell by default, it's a separate set of optional packages (from the Windows ADK PE Add-ons). You can use DISM instead.
Code:
dism.exe /Image:C:\ /Export-Driver /Destination:D:\Drivers
 

My Computer

System One

  • OS
    Windows 7
Thanks for the reply garlin.
So if Powershell on USB then use it like this,

Code:
Export-WindowsDriver -Path c:\ -Destination D:\Whatever\Drivers

If No Powershell on USB then cmd.exe like this,
Code:
Dism /Image:C:\ /Export-Driver /Destination:D:\Whatever\Drivers
Thanks for the heads up.
As for the Intel RST drivers and drive confusion issue. This new computer only has one drive (an SSD). So I think I can look in Diskpart and decipher the size, partitions etc before I type the drive letter in the command. Thanks again for the Heads up on that facet.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    HP 17" Laptop, Acer Aspire 5
Back
Top Bottom