From the article:
Checking driver dates is a little more difficult because I don't know of any Windows menu that makes it easy to see all drive installs sorted by date.
The following is a log file of driver installs and dates:
C:\Windows\inf\setupapi.dev.log
Read from the bottom up.
In the log file you will find the following 4 example lines for each driver:
>>> [Install network driver - oracle_VBoxNetLwf]
>>> Section start 2024/01/17 23:48:30.091
<<< Section end 2024/01/17 23:48:30.617
<<< [Exit status: SUCCESS]
This shows that I installed a VirtualBox (VBoxNetLwf) driver about 3 days ago.
After a little research, I determined you can display only those lines (per driver) using the following in Command Prompt:
Code:
findstr "<<< >>>" C:\Windows\inf\setupapi.dev.log
And if you want to save only those lines to a text file, simply direct the output to a file like this:
Code:
findstr "<<< >>>" C:\Windows\inf\setupapi.dev.log > %userprofile%\Desktop\DriverInstalls.txt
This will create DriverInstalls.txt on your desktop. Read from the bottom up.