Sample code for 30+ languages & platforms
AutoIt

Windows Certificate Stores - Find Certificate by Common Name

See more Certificates Examples

Searches the Windows certificate stores for a certificate that matches the specified common name (CN).

Note: This example requires Chilkat v10.0.0 or greater.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

$oCert = ObjCreate("Chilkat.Cert")
$bSuccess = $oCert.LoadByCommonName("Chilkat Software, Inc.")
If ($bSuccess = False) Then
    ConsoleWrite($oCert.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oCert.SubjectDN & @CRLF)
ConsoleWrite("Success." & @CRLF)