Book a Demo

Author Topic: How to deploy compiled Add-Ins to different PCs?  (Read 6342 times)

Simon Hackfort

  • EA Novice
  • *
  • Posts: 8
  • Karma: +0/-0
    • View Profile
How to deploy compiled Add-Ins to different PCs?
« on: March 07, 2008, 08:02:44 pm »
What must I do to deploy my compiled EA Addin (the dll file)  on different machines with an installation or something. So that it will be in the EA addin manager, too. I read something about to enter a key for the addin in the registermanager. But how will be this key calculated?

«Midnight»

  • EA Guru
  • *****
  • Posts: 5651
  • Karma: +0/-0
  • That nice Mister Grey
    • View Profile
Re: How to deploy compiled Add-Ins to different PC
« Reply #1 on: March 08, 2008, 12:03:17 am »
Simon,

I think you just need to add the correct Windows registry key. Most installation packages have some way of doing this.

The key is basically the name of the add-in, and possibly the path to the compiled code. It is in the documentation: look in the index for Deploy | Add-in.

David
No, you can't have it!

Frank Horn

  • EA User
  • **
  • Posts: 535
  • Karma: +1/-0
    • View Profile
Re: How to deploy compiled Add-Ins to different PC
« Reply #2 on: March 08, 2008, 03:02:59 am »
EA needs an HKEY_CURRENT_USER\Software\Sparx Systems\EAAddins\YourAddIn with the full name of the COM class to be created as value. And the COM class needs to be registered, i.e. HKEY_CLASSES_ROOT\CLSID\blah.blah and all that stuff.

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: How to deploy compiled Add-Ins to different PC
« Reply #3 on: March 08, 2008, 06:54:54 am »
Add the key in the registry and register the dll with regsvr32. Look in the help for more details. (or as we used to say back in the good old support days: RTFM  ;))

Simon Hackfort

  • EA Novice
  • *
  • Posts: 8
  • Karma: +0/-0
    • View Profile
Re: How to deploy compiled Add-Ins to different PC
« Reply #4 on: March 10, 2008, 07:48:27 pm »
thank you guys for fast and helpful replies, now I found the chapter in the help file and I created a successful setup project.