Hello,
We apologize for our delayed reply.
Unfortunately this is due to a Windows Installer limitation. We use the built-in Windows Installer registry support and this do not have the option to prepend or append the setup reg value to the reg value on disk.
However, as a workaround solution you can simply create a
registry search (REG_SEARCH) which will get the current reg value on disk. Then use a
formatted property reference in the "Data" field of you registry from the setup project. Thus at install time, if the registry is found on disk its value will be saved into the property name (REG_SEARCH) which actually is an installer property. Then the installer property value will be expanded when installing the reg value.
Here are the steps you could follow:
1. go to "Search" page and add a registry value search (REG_SEARCH) which will search for your reg value on disk
2. go to "Registry" page and double click on your registry value
3. edit its "Data" field like so:
Code: Select all
[REG_SEARCH]
current installer value
4. save and rebuild the setup project
Hope this helped.
All the best,
Daniel