You can of course check all currently installed driver of connected devices one by one via Device Manager GUI (Right click on Start -> Device Manager) in Windows:

Device Manager view

But there is of course a way to obtain this information programmatically via PowerShell.

  1. Open Start menu
  2. Search for PowerShell and select Run as administrator
  3. Type in following command to get a list of all drivers installed on your computer and press Enter:
Get-WmiObject Win32_PnPSignedDriver| select DeviceName, Manufacturer, DriverVersion

If you want to search only for s specific driver name, you can further filter it out by:

Get-WmiObject Win32_PnPSignedDriver| select DeviceName, DriverVersion, Manufacturer | where {$_.DeviceName -like "*Intel*"}
PowerShell list of all drivers, including names, manufacturers and installed driver versions