Software⏱️ 2 min read📅 2026-05-29

How to Fix: How to backup/export ALL drivers on my PC?

Export all drivers from a PC using the driverquery.exe command.

Quick Answer: Use the /V option with driverquery.exe to export all drivers: driverquery.exe /FO TABLE /V. Pipe the output into pnputil to export the drivers.

To backup or export all drivers on your PC, you can use the `driverquery.exe /FO TABLE` command, but it seems that this method only lists a limited number of drivers. Another approach is to use the `Get-WindowsDriver -Online -All` command, which also has limitations.

✅ Best Solutions to Fix It

Method 1: Using PowerShell

  1. Step 1: Open PowerShell as administrator and run the following command: `Get-WindowsDriver -Online | Export-ModuleMember -FunctionName Get-WindowsDriver

Method 2: Using pnputil

  1. Step 1: Open a Command Prompt as administrator and run the following command: `pnputil /export drivers /driverfile:drivers.txt` This will export all drivers to a file named `drivers.txt`. You can then pipe the output of `driverquery.exe /FO TABLE` into this command using the `|` operator.

By following these methods, you should be able to backup or export all drivers on your PC. Note that the output may still vary depending on the specific driver and its version.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions