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:
But there is of course a way to obtain this information programmatically via PowerShell.
- Open Start menu
- Search for PowerShell and select Run as administrator
- 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*"}