Verifying Installation
Verify Installation Using Powershell
The following is a PowerShell script that can be used to verify proper installation of the YKMD.
Note
Running the script requires elevation.
Get-WindowsDriver -Online
| Where {($_.ProviderName -like "Yubico")
-and ($_.ClassName -like "SmartCard")
-and ($_.Version -like "*")}
| select ProviderName,ClassName,Version
For example