Re: [WiX-users] Setting properties in custom actions

2010-01-04 Thread David Allen
This seems to have worked - thanks very much. David > -Original Message- > From: Blair [mailto:os...@live.com] > Sent: 22 December 2009 13:45 > To: 'General discussion for Windows Installer XML toolset.' > Subject: Re: [WiX-users] Setting properties in custom

Re: [WiX-users] Setting properties in custom actions

2010-01-02 Thread Blair
Windows Installer evaluates component conditions during CostFinalize, so your custom action that sets those session values must be scheduled before then. I would recommend scheduling those types of actions to run before CostInitialize, just to have a "smoother" flow. -Original Message- Fro

Re: [WiX-users] Setting properties in custom actions

2009-12-22 Thread Blair
The on the components is evaluated during CostFinalize, not CreateShortcuts. You don't get the shortcuts because the components installing the shortcuts are not being installed due to the false condition on them. I would recommend moving your CheckApplicationLicence custom action sequence to befo