I have a certificate generated via MakeCert. I want to use this certificate for WCF message security using PeerTrust. How can I programmatically install the certificate into the "trusted people" local machine certificate store using c# or .NET?

I have a CER file, but can also create a PFX.

link|improve this question
Btw - i know the details of Makecert and trust. Please, just looking for suggestions on installing the certificate using programmatic c# or installshield. thanks! – J Davis Feb 19 '09 at 18:38
any idea how to do this in c program?? any API in windows?? – user1317084 May 24 at 5:01
feedback

2 Answers

up vote 11 down vote accepted

I believe that this is correct:

X509Store store = new X509Store(StoreName.TrustedPeople, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadWrite);
store.Add(cert); //where cert is an X509Certificate object
store.Close(); 
link|improve this answer
feedback

The following works good for me:

private static void InstallCertificate(string cerFileName)
{
    X509Certificate2 certificate = new X509Certificate2(cerFileName);
    X509Store store = new X509Store(StoreName.TrustedPublisher, StoreLocation.LocalMachine);

    store.Open(OpenFlags.ReadWrite);
    store.Add(certificate);
    store.Close();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.