vote up 0 vote down star

How to import certadm.dll into managed project and use RevokeCertificate method? I tried adding it as reference but I got error asying it's not assembly or COM object.

Any ideas?

UPDATE: I already tried regsvr32 c:\certadm.dll and I get following error: LoadLibrary("c:\certadm.dll") failed - the specified procedure could not be found.

flag

75% accept rate
You might want to have a look at the version of certadm.dll that you're trying to register. You can use DLL Export Viewer (nirsoft.net/utils/dll_export_viewer.html/…) to check that the requisite COM load/unload procedures are there. – Eric Smith Aug 5 at 9:58

1 Answer

vote up 0 vote down

You first need to register the COM server using regsvr32 before it will be available to be added as a reference in Visual Studio.

e.g.,

regsvr32 certadm.dll
link|flag

Your Answer

Get an OpenID
or

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