Hi,
I create a new MSI package.
I want to create a custom action in VBS but it don't work (internal error during execution).
This CA check if an exe file exist if this exe exist the package's installation have to arbort (roll back action).
For example, the following VBScript function returns DABORT to exit the installation.
http://www.installshield.com/news/newsletter/0308-articles/msi.aspFunction ExitSetupFromVBS( )
Const IDABORT = 3
' ...do some work...
' abort the installation
ExitSetupFromVBS = IDABORT
End Function
Any idea about custom action execution and parameters (deferred, synchronous...) ????
Thanks