Certificate Location in Windows MMC

Hey,
Is it possible to load a certificate from a custom store from Windows MMC?

Our previous SAML(very old) implementation used a custom store to hold certificates and I’ve been asked to keep using it.

In my new implementation for SAML SP I am loading via thumbprint.
Cheers, Patrick

Hi Patrick,

A custom store may be specified using the CertificateConfiguration.StoreName property. It defaults to “My”.

new CertificateConfiguration
{
    StoreName = "CustomStore",
    Thumbprint = serviceProviderThumbprint
}
1 Like

Ah savage, thank you kindly!