user1513388
user1513388

Reputation: 7441

Windows COM Class Name

I need to create an instance of the "ICertRequest2" interface COM class using Python comtypes. How do I get the correct name to reference this?

e.g. for the ICertAdmin2 interface its called "CertificateAuthority.Admin" and I can do this:

certadmin = CreateObject("CertificateAuthority.Admin")

I need to do the same for ICertRequest2

Regards.

Upvotes: 1

Views: 96

Answers (1)

Igor Tandetnik
Igor Tandetnik

Reputation: 52471

That would be CertificateAuthority.Request

Upvotes: 1

Related Questions