Question about ARPNOREPAIR Windows Installer property
when i used orca for creating mst for java application. I set arpnorepair property to 1 but it not replicated.always repair button is enable. Please help me how to solve this?
Answers (2)
ARPNOREMOVE=1 is the Public Property you're looking for to add to the Property Table of an MSI or MST to disable the remove button in ARP - note the spelling, and the capitalisation of the letters - they are important.
Its cousins, ARPNOMODIFY and ARPNOREPAIR are also useful.
If it is still appearing, there may be multiple ARP entries in the registry for the software, but only one visible. Check whether it has 'SystemComponent=1' under the uninstall key - this will cause the whole ARP entry to be hidden.
Some applications hide the ARP entry created by the MSI and pipe in a different one, meaning whatever you set in the MSI/MST won't be the one that is shown - you'll have to add the registry keys to disabled the buttons in your package.
Hope that helps,
Dunnpy