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

Popular posts from this blog

How to connect android app to App engine -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

php - display validation error message next to the textbox in codeigniter -