Hello,
The list of templates and their location are stored in the following registry key:
HKEY_CURRENT_USER\Software\Caphyon\Advanced Installer\Templates List
The behavior you are looking for is not supported by Advanced Installer. However this is not too hard to set up.
What you will need is:
- a shared folder in which you will save your templates and to which everyone has read/write access
- every developer will need a script that synchronizes the shared folder with a local copy of it on their local machine
- also they need another script that reads the contents of the local copy of the shared folder and writes the paths to the registry key i mentioned above. This needs to be done while Advanced Installer is closed.
- the following is a sample structure of the key i mentioned above (note that this is an exported reg file):
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Caphyon\Advanced Installer\Templates List]
"TemplatesCount"=dword:00000062
"Template1"="C:\\Program Files\\Your Product\\some_other_template.aip"
"Template2"="c:\\template1.aip"
- the two scripts (synchronization and registry writing) should be periodically run in order to maintain the templates on each dev machines up-to-date
Regards,
Gabriel