Re: [WiX-users] Different action on uninstall

2007-08-29 Thread Rob Hamflett
In my installations, clicking the final 'remove' button sets 
REMOVE=ALL.  Is this not a requirement, given that the REMOVE property 
is supposed to contain the list of features to be removed or the word 
ALL?  In any case, you can just set some other property when the user 
clicks this button and then condition your action off that.

Rob

Benas wrote:
 'REMOVE=ALL is true when user clicks uninstall.

 But if user double click on msi file there he'll be able to pick from 
 repair or uninstall and if he pick up uninstall the condition 
 'REMOVE=ALL is false.
 What condition should i use if i want it be true for all uninstall 
 actions?



 2007/8/1, Rob Hamflett [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:

 The Installed property will tell you if the product is installed
 or not.  So a Custom Action with a
 condition of 'NOT Installed' will only be trigger on install.  A
 condition of 'Installed' is
 obviously the opposite to this, but it's also true for repairs and
 maintenance.  If you need to tell
 the difference between these and an actual uninstall, I think a
 condition of 'REMOVE=ALL' is what
 you want.

 Rob

 Benas wrote:
  I need some property to detect if it's installation or
 uninstallation
  process
 
  2007/8/1, Benas [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]:
 
  During installation I'm calling extern C function in my cpp
 dll.
 
  But during uninstallation i want to call other function from the
  same dll - how can i do that?
 
 
  Thanks for answers,
  Benas
 
 
 
 
  --
  Pagarbiai,
  Benediktas Lipnickas
 
 
 
 
 
 
 -

  This SF.net email is sponsored by: Splunk Inc.
  Still grepping through log files to find problems?  Stop.
  Now Search log events and configuration files using AJAX and a
 browser.
  Download your FREE copy of Splunk nowhttp://get.splunk.com/
 
 
 
 
 
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
 mailto:WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 https://lists.sourceforge.net/lists/listinfo/wix-users


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a
 browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 mailto:WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 -- 
 Pagarbiai,
 Benediktas Lipnickas 

-- 
This E-mail is from SN Systems Ltd, registered office: 10 Great Marlborough 
Street, London, W1F 7LP. Registered in England No 2436957.All rights reserved. 
Information in this email is confidential and is intended solely for the 
addressee. Access, copying or re-use of information in it by anyone else is 
unauthorised. The contents of this email should be treated in accordance with 
any applicable license agreement. Please immediately notify the sender if you 
are not the intended recipient and have received this email.  Any views or 
opinions presented are solely those of the author and do not necessarily 
represent those of SN Systems Ltd or any of its affiliates.  Copyright (c) SN 
Systems Ltd 2007.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Different action on uninstall

2007-08-28 Thread Benas
 'REMOVE=ALL is true when user clicks uninstall.

But if user double click on msi file there he'll be able to pick from repair
or uninstall and if he pick up uninstall the condition 'REMOVE=ALL is
false.
What condition should i use if i want it be true for all uninstall actions?



2007/8/1, Rob Hamflett [EMAIL PROTECTED]:

 The Installed property will tell you if the product is installed or
 not.  So a Custom Action with a
 condition of 'NOT Installed' will only be trigger on install.  A condition
 of 'Installed' is
 obviously the opposite to this, but it's also true for repairs and
 maintenance.  If you need to tell
 the difference between these and an actual uninstall, I think a condition
 of 'REMOVE=ALL' is what
 you want.

 Rob

 Benas wrote:
  I need some property to detect if it's installation or uninstallation
  process
 
  2007/8/1, Benas [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:
 
  During installation I'm calling extern C function in my cpp dll.
 
  But during uninstallation i want to call other function from the
  same dll - how can i do that?
 
 
  Thanks for answers,
  Benas
 
 
 
 
  --
  Pagarbiai,
  Benediktas Lipnickas
 
 
  
 
 
 -
  This SF.net email is sponsored by: Splunk Inc.
  Still grepping through log files to find problems?  Stop.
  Now Search log events and configuration files using AJAX and a browser.
  Download your FREE copy of Splunk now   http://get.splunk.com/
 
 
  
 
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
Pagarbiai,
Benediktas Lipnickas
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Different action on uninstall

2007-08-28 Thread JosephLee

Try Remove=YourFeatureName, it take effect when you changed the Feature
status.


Benas wrote:
 
  'REMOVE=ALL is true when user clicks uninstall.
 
 But if user double click on msi file there he'll be able to pick from
 repair
 or uninstall and if he pick up uninstall the condition 'REMOVE=ALL is
 false.
 What condition should i use if i want it be true for all uninstall
 actions?
 
 
 
 2007/8/1, Rob Hamflett [EMAIL PROTECTED]:

 The Installed property will tell you if the product is installed or
 not.  So a Custom Action with a
 condition of 'NOT Installed' will only be trigger on install.  A
 condition
 of 'Installed' is
 obviously the opposite to this, but it's also true for repairs and
 maintenance.  If you need to tell
 the difference between these and an actual uninstall, I think a condition
 of 'REMOVE=ALL' is what
 you want.

 Rob

 Benas wrote:
  I need some property to detect if it's installation or uninstallation
  process
 
  2007/8/1, Benas [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:
 
  During installation I'm calling extern C function in my cpp dll.
 
  But during uninstallation i want to call other function from the
  same dll - how can i do that?
 
 
  Thanks for answers,
  Benas
 
 
 
 
  --
  Pagarbiai,
  Benediktas Lipnickas
 
 
 
 
 
 
 -
  This SF.net email is sponsored by: Splunk Inc.
  Still grepping through log files to find problems?  Stop.
  Now Search log events and configuration files using AJAX and a browser.
  Download your FREE copy of Splunk now   http://get.splunk.com/
 
 
 
 
 
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 
 
 
 -- 
 Pagarbiai,
 Benediktas Lipnickas
 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 
 

-- 
View this message in context: 
http://www.nabble.com/Different-action-on-uninstall-tf4198893.html#a12379860
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Different action on uninstall

2007-08-01 Thread Benas
I need some property to detect if it's installation or uninstallation
process

2007/8/1, Benas [EMAIL PROTECTED]:

 During installation I'm calling extern C function in my cpp dll.

 But during uninstallation i want to call other function from the same dll
 - how can i do that?


 Thanks for answers,
 Benas




-- 
Pagarbiai,
Benediktas Lipnickas
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Different action on uninstall

2007-08-01 Thread Rob Hamflett
The Installed property will tell you if the product is installed or not.  So a 
Custom Action with a 
condition of 'NOT Installed' will only be trigger on install.  A condition of 
'Installed' is 
obviously the opposite to this, but it's also true for repairs and maintenance. 
 If you need to tell 
the difference between these and an actual uninstall, I think a condition of 
'REMOVE=ALL' is what 
you want.

Rob

Benas wrote:
 I need some property to detect if it's installation or uninstallation 
 process
 
 2007/8/1, Benas [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:
 
 During installation I'm calling extern C function in my cpp dll.
 
 But during uninstallation i want to call other function from the
 same dll - how can i do that?
 
 
 Thanks for answers,
 Benas
 
 
 
 
 -- 
 Pagarbiai,
 Benediktas Lipnickas
 
 
 
 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 
 
 
 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users