Table of Contents
This tip is about the how to Find the Version of Device Driver in Windows 10. So read this free guide, How to Find the Version of Device Driver in Windows 10 step by step. If you have query related to same article you may contact us.
How to Find the Version of Device Driver in Windows 10 – Guide
Maintaining Your PC Drivers up-to-date not only helps to advance execution, but also helps to avoid stability issues and to run the PC a little more smoothly. That’s why experts advise PC users to update device drivers whenever a newer version is released.
When talking about updating device drivers, Windows users have several options to choose from. You can use available software to automatically check for outdated drives and update them, manually download and install the latest version, or use native update driver feature on Windows, which sometimes helps to update device drivers available through Windows Update.
How to Find the driver version using Start Button
- Click the Windows Start button button
- Enter Device Manager and click on it
- A list of drivers will appear in the Device Manager window.
- Click on the device for which you want to check the driver version.
- Right click on the driver and select “Properties”
- Go to the Driver tab. The driver version can be seen on the third line.
- Once viewed, click “OK” or close to exit.
Using this method, you can easily find out the current driver version. In addition, you can also check another tab like Details, Resources etc.
How to Check the driver version using the Run command
- Press Windows + R to open the RUN toolbox
- Type devmgmt.msc in the box and click OK. This will open the “Device Manager”.
- A list of drivers will appear in the window. Search for the desired driver.
- Click the left arrow next to the specific device to see the driver for it.
- Right click on the driver and select “Properties” from the drop-down menu.
- From the driver window, go to the Driver tab and view the driver version as shown below.
Check device driver using Windows Powershell
- Click Start, type PowerShell and click on it.
- Once the Windows PowerShell box opens, type or paste the command below to see the complete list of all system device names, their manufacturers, and driver version details: Get-WmiObject Win32_PnPSignedDriver | select DeviceName, DriverVersion, Manufacturer
- Press the Enter key. This will show the entire device name along with the driver version and manufacturer details.
- But if you want to see the version of specific device drivers, use the following command: Get-WmiObject Win32_PnPSignedDriver | select DeviceName, DriverVersion, Manufacturer | where {$_. DeviceName -like “* Intel *”}
- Press the Enter key.
This command will show all the device name, driver and manufacturer name.
Final note
I hope you like the guide How to Find the Version of Device Driver in Windows 10. In case if you have any query regards this article you may ask us. Also, please share your love by sharing this article with your friends.