I'm trying to launch webpage when the user uninstalls my app, have tried
various things but no joy, does anyone have a sample or a tutorial on how to
do this from wix 2.0?

 

 

<!-- Launch the application -->

      <CustomAction Id="LaunchFile" FileKey="Phoenix.exe"
ExeCommand="JustInstalled" Return="asyncNoWait"/>

      <CustomAction Id="LaunchWebpage" ExeCommand="www.google.com"
Return="ignore" />

 

      

      <!-- Launch the application immediately on close if not uninstalling
-->

      <!-- Sequences -->

      <InstallExecuteSequence>

         <Custom Action="PreventDowngrading"
After="FindRelatedProducts">NEWPRODUCTFOUND</Custom>

         <Custom Action="LaunchFile" After="InstallFinalize">NOT
REMOVE="ALL"</Custom>

         <Custom Action="LaunchWebpage"
After="InstallFinalize">REMOVE="ALL"</Custom>

         <RemoveExistingProducts After="InstallFinalize" />

      </InstallExecuteSequence>

 

      <InstallUISequence>

         <Custom Action="PreventDowngrading"
After="FindRelatedProducts">NEWPRODUCTFOUND</Custom>

      </InstallUISequence>

 

regards

ewart

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to