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.
Run the PowerShell command:
Get-WindowsDriver -Online | where {($_.ProviderName -like "Yubico") -and ($_.ClassName -like "SmartCard") -and ($_.Version -like "*")} | select ProviderName,ClassName,Version
Where
- The command combines the
where
andselect
steps into the single command. - ProviderName,
Yubico
- ClassName,
SmartCard
- Version,
*
The response is similar to:
ProviderName ClassName Version ............. .......... ....... Yubico SmartCard 4.6.3.252
- The command combines the