Re: [WiX-users] Custom action call problem

2008-09-12 Thread Chandra Vuppala
15 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Custom action call problem You have no inner text set for your CustomActions so they will always execute whenever the MSI is run (install, repair/upgrade & uninstall). Use Installed AND NOT REINSTALL to make

Re: [WiX-users] Custom action call problem

2008-09-09 Thread Pally Sandher
You have no inner text set for your CustomActions so they will always execute whenever the MSI is run (install, repair/upgrade & uninstall). Use Installed AND NOT REINSTALL to make it run only during uninstallation. If you only had 'Installed' in the inner text it would also run during repair/upgr