WiX - Passing parameters to a CustomAction (DLL)

Posted by glenneroo on Stack Overflow See other posts from Stack Overflow or by glenneroo
Published on 2010-04-28T18:06:25Z Indexed on 2010/04/28 18:17 UTC
Read the original article Hit count: 547

Filed under:
|
|
|

I've got a DLL from an old WiSE installer that i'm trying to get working in WiX, so i'm pretty sure the DLL works with MSI-based installers.

Here is my definition:

<Binary Id="SetupDLL" SourceFile="../Tools/Setup.dll" />
<CustomAction Id="ReadConfigFiles" BinaryKey="SetupDLL" DllEntry="readConfigFiles" />

and usage:

<Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="ReadConfigFiles" Order="3">1</Publish>

Where exactly can I pass in parameters?

© Stack Overflow or respective owner

Related posts about wix

Related posts about customaction