cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Need to know how to a call ISCleanUpSuccess from another custom action

How can you call a custom action from another custom action. I need to be able to call the "ISCleanUpSuccess" custom action after I run my custom action. Both need to run from InstallExecuteSequence table triggered on the Sequence type -1. My custom action is a vb.exe (visual basic) with parameters. Is there a way to call the ISCleanUpSuccess action from within an VB.exe?
(1) Reply
You would need to use the MSI API to launch a custom action. In VB you will likely have to use the Session object with DoAction.

For example, something like session.doaction("mycustomaction").