1

I'm struggling to find examples/explanations of coding a MS Certificate Authority exit module.

If anybody has any help or resources they can point me at I'd be grateful.

Jeff Mercado
  • 129,526
  • 32
  • 251
  • 272
J Hunt
  • 850
  • 1
  • 7
  • 14
  • This appears to be an almost exact duplicate of http://stackoverflow.com/questions/208057/ms-ca-exit-module-code-or-tutorial. I'd like to close one of them - which one would you like me to close? – Jon Skeet Oct 16 '08 at 10:44
  • Heh, I'd say standard practice is to keep the earlier one. :-P – C. K. Young Oct 16 '08 at 10:45
  • I followed through on my own advice. If you want, feel free to reopen it and close it yourself so it's got your name attached to the closing message instead. :-P – C. K. Young Oct 16 '08 at 10:46

2 Answers2

2

Perhaps this article will help you? Writing Custom Exit Modules

C. K. Young
  • 219,335
  • 46
  • 382
  • 435
0

The Windows 7 SDK contains a sample in directory security/certificateservices/exit/c++/.

You can download only the sample here: https://github.com/Microsoft/Windows-classic-samples/tree/master/Samples/Win7Samples/security/certificateservices/exit/c%2B%2B/WindowsServer2008R2

Froggy
  • 339
  • 2
  • 15
  • BTW, downloading a single folder instead of the whole repository requires a trick, as described here: https://stackoverflow.com/questions/7106012/download-a-single-folder-or-directory-from-a-github-repo – Froggy Aug 23 '18 at 07:38