vbscript - WiX share code through custom actions -
i using wix 3.9 , have need customactions. these customactions executing vbscript, not matter doing. want know if can share code trough different customactions.
what have tried far:
<property id="vbs_logging"> <![cdata[ msgbox "property injection worked" ]]> </property> <customaction id="executethis" script="vbscript"> [vbs_logging] <![cdata[ msgbox "bye!" ]]> </customaction> <customaction id="executesomewhereelse" script="vbscript"> [vbs_logging] <![cdata[ msgbox "hi!" ]]> </customaction> unfortunately not work, know approach how achieve goal?
Comments
Post a Comment