I am not familar with Driver Verifier per se - generally do not use such utilities/tools.
Many of those tools just use some built in Windows/Microsoft code and present a different graphical picture.
You can learn about the installed drivers in other ways.
Here is a link that uses Device Manager and Powershell.
https://www.technorms.com/87172/how-to-check-driver-version
You do not need to download anything.
If you are only concerned about a few specific drivers then use Device Manager per Method 1.
For a much longer list with details then use Method 2. Powershell (which is what I do) to obtain the driver information.
What makes it easy is that you do not need to retype the Get-WinObject ...... cmdlet. You can copy and paste the text in the grey box into Powershell. Shown in red color below.
Here is what doing so looks like (shown in bold) on my computer. Note that I did not copy and paste all of the results.
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
Install the latest PowerShell for new features and improvements! https://aka.ms/PSWindows
PS C:\WINDOWS\system32> Get-WmiObject Win32_PnPSignedDriver| select DeviceName, Manufacturer, DriverVersion
DeviceName Manufacturer DriverVersion
---------- ------------ -------------
Local Print Queue HP 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
Local Print Queue Microsoft 10.0.22621.1
WAN Miniport (Network Monitor) Microsoft 10.0.22621.1
WAN Miniport (IPv6) Microsoft 10.0.22621.1
WAN Miniport (IP) Microsoft 10.0.22621.1
WAN Miniport (PPPOE) Microsoft 10.0.22621.1
WAN Miniport (PPTP) Microsoft 10.0.22621.1
WAN Miniport (L2TP) Microsoft 10.0.22621.1
WAN Miniport (IKEv2) Microsoft 10.0.22621.1
WAN Miniport (SSTP) Microsoft 10.0.22621.1
Generic software device Microsoft 10.0.22621.1
Generic software device Microsoft 10.0.22621.1
Generic software device Linksys, LLC 10.0.22621.1
Generic software device Linksys, LLC 10.0.22621.1
Microsoft Wireless Router Module Linksys, LLC 1.0.0.2
My Book Live Network Storage Western Digital Corporation 2.2.0.7
Generic software device HP 10.0.22621.1
WSD Scan Device HP 10.0.22621.1
HP OfficeJet Pro 9010 series PCL-3 HP 29.117.2.7675
WSD Print Device HP 10.0.22621.1
Generic software device HP 10.0.22621.1
Generic software device Microsoft 10.0.22621.1
Generic software device Microsoft 10.0.22621.1
Generic software device Microsoft 10.0.22621.1
Computer Device Microsoft 10.0.22621.1
Audio Endpoint Microsoft 10.0.22621.1
Audio Endpoint Microsoft 10.0.22621.1
Oculus Virtual Audio Device Microsoft 13.3.46.740
Remote Desktop Device Redirector Bus Microsoft 10.0.22621.2506
Oculus Virtual Gamepad Emulation Bus Facebook, Inc. 1.5.8.0
Plug and Play Software Device Enumerator (Standard system devices) 10.0.22621.1
Microsoft System Management BIOS Driver (Standard system devices) 10.0.22621.1
NDIS Virtual Network Adapter Enumerator Microsoft 10.0.22621.1
NVVHCI Enumerator NVIDIA 3.5.3090.2760
.
.
.
.
.
Requires a bit of reading searching to work throught the list and find any specific driver and version information.
If you are comfortable trying something new and a little bit of "coding" then give Powershell (Method 2) A a try.
A "Get-" cmdlet just does that. It gets information and will not try to download, install, etc.. There are other Powershell cmdlets used for such things.