I have installed an x509 cert following these directions; http://www.vandyke.com/products/vshell/docs/windows/Use_X.509_Certificates.htm This istalls it into the trusted root certification authorities store, AuthRoot. When trying to find the cert; open the store:X509Store store = new X509Store(StoreName.AuthRoot) loop through, find one with X thumbprint. This works fine when it is installed into the trusted root cert auth store.
When I try to do the same but install it into the personal store, change opening the store to X509Store store = new X509Store(StoreName.My) I can not find the cert.
Looking in the certmgr I can see it under personal->certificates.
Is there configuration required in IIS7 for personal cert? Could anyone help explain what I'm missing?