[SOLVED] what is best app to check drivers

Solution
And consider using Powershell (if you are inclined to do such things) to obtain a list of the currently installed drivers via:

"Get-WindowsDriver -Online -All"

Run from Powershell with Admin rights - make take a couple of minutes and result in a long list....

Reference:

https://windowsloop.com/get-installed-drivers-list/

Ignore the ads and downloads in the referenced link.

You can google for other examples and references as you deem applicable and appropriate.

Ralston18

Titan
Moderator
And consider using Powershell (if you are inclined to do such things) to obtain a list of the currently installed drivers via:

"Get-WindowsDriver -Online -All"

Run from Powershell with Admin rights - make take a couple of minutes and result in a long list....

Reference:

https://windowsloop.com/get-installed-drivers-list/

Ignore the ads and downloads in the referenced link.

You can google for other examples and references as you deem applicable and appropriate.
 
Solution