Re: [WiX-users] CustomActionData

2012-03-09 Thread Wilson, Phil
ginal Message- From: Parkes, Kevin [mailto:kevin.par...@wacom.eu] Sent: Friday, March 09, 2012 9:23 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] CustomActionData I have a couple of deferred custom actions to which I need to pass parameters. Obviously for a single custom actio

[WiX-users] CustomActionData

2012-03-09 Thread Parkes, Kevin
I have a couple of deferred custom actions to which I need to pass parameters. Obviously for a single custom action I'd just set the CustomActionData property. Do I have to pack all parameters for each custom action into CustomActionData and have each action extract its own parameters somehow or

Re: [WiX-users] CustomActionData in C# Custom Action

2010-02-20 Thread Bob Arnson
On 2/17/2010 10:42 AM, Jake Boone wrote: > I have a custom action where I'm trying to use SourceDir. See the MSI SDK for details about SourceDir; it's not always available. -- sig://boB http://joyofsetup.com/ -- Downlo

[WiX-users] CustomActionData in C# Custom Action

2010-02-17 Thread Jake Boone
I have a custom action where I'm trying to use SourceDir. I don't think SourceDir is accessible at the point the CA will run, so I want to pass it through CustomActionData. The CA executes fine, but when I try to access CustomActionData, it's blank. I know this is probably a simple problem but I

Re: [WiX-users] CustomActionData for uninstall

2009-11-23 Thread Alexander Shevchuk (Volt)
Your "UnDeploy" custom action does not have Execute="deferred" attribute, which means it is immediate CA. -Original Message- From: cce91 [mailto:ell...@nortel.com] Sent: Monday, November 23, 2009 1:55 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users]

Re: [WiX-users] CustomActionData for uninstall

2009-11-23 Thread Wilson, Phil
09 1:55 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] CustomActionData for uninstall I have successfully accessed values in a deferred CustomAction using CustomActionData, but it only works during the install. I want to do the same thing for a CustomAction that runs during uninstal

[WiX-users] CustomActionData for uninstall

2009-11-23 Thread cce91
I have successfully accessed values in a deferred CustomAction using CustomActionData, but it only works during the install. I want to do the same thing for a CustomAction that runs during uninstall, but the value of the CustomActionData is undefined. Installed AND NOT UPGRADIN