Author Topic: Set Active MDG for all users - how?  (Read 1393 times)

Greg_PL

  • EA User
  • **
  • Posts: 20
  • Karma: +0/-0
    • View Profile
Set Active MDG for all users - how?
« on: July 02, 2024, 08:51:04 pm »
Hi!

I'm trying to find way to set a default (active) MDG for all users. Currently I can set it locally only. Can it be a model / project property?

Thanks!
Greg

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13404
  • Karma: +567/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Set Active MDG for all users - how?
« Reply #1 on: July 02, 2024, 09:17:12 pm »
I'm using an EA-Matic script to do that.

You can probably do the same using an add-in or model-addin.

Code: [Select]
function EA_FileOpen()
Repository.ActivateTechnology "MyMDG"
end function

Geert