When you open a .crt file in explorer, a Windows Certificate viewer shows the details of the cert.

I need to open this viewer from .net (c#). I've found out that the file system32\cryptext.dll opens the viewer: rundll32.exe cryptext.dll,CryptExtOpenCER

Is there a .net code / class to open this window (or a similar one) directly, if not how do I call the .dll function without rundll32?

Note: I do NOT mean the certmgr.msc itself.

link|improve this question
feedback

2 Answers

You can call

Process.Start("c:\\certificate.crt");

given the .crt file type is correctly associated in windows explorer

link|improve this answer
That's not much better than calling rundll32. And the files don't always have the correct extension. – manuel Sep 13 '11 at 13:38
@manuel Alternativley, use the X509CertificateClass and build your own dialog showing the information you´re looking for msdn.microsoft.com/en-us/library/… – Dominik Sep 13 '11 at 14:00
feedback
up vote 0 down vote accepted

Here I've found rhe right hint Invoke Windows Certificate Export Wizard .NET

X509Certificate2UI.DisplayCertificate(cert);
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.