Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-23 Thread Blair
What is your entire condition? -Original Message- From: spsingam [mailto:siva.poobalasin...@gmail.com] Sent: Sunday, November 22, 2009 9:23 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Launch Condition on Unistall or Remove hi all, well, it still does not work as

Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-23 Thread Pally Sandher
ourceforge.net Subject: Re: [WiX-users] Launch Condition on Unistall or Remove hi all, well, it still does not work as the Launch condition still executed on Uninstall. I have tried "NOT Installed" within the condition and it does not work. i am using Wix 3.0.5419.0 and Votive with VS 2

Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-22 Thread spsingam
hi all, well, it still does not work as the Launch condition still executed on Uninstall. I have tried "NOT Installed" and "OR Installed" within the condition and it does not work. i am using Wix 3.0.5419.0 and Votive with VS 2008. Can someone maybe give me a sample code that work? Thanks.

Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-22 Thread spsingam
hi all, well, it still does not work as the Launch condition still executed on Uninstall. I have tried "NOT Installed" within the condition and it does not work. i am using Wix 3.0.5419.0 and Votive with VS 2008. Can someone maybe give me a sample code that work? Thanks. Blair-2 wrote:

Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-20 Thread Blair
Always add " OR Installed" to all of your LaunchConditions. If the product is already installed, you want to allow repairs and removals, including upgrades. -Original Message- From: spsingam [mailto:siva.poobalasin...@gmail.com] Sent: Tuesday, November 17, 2009 8:13 PM To: wix-users@lists

Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-18 Thread spsingam
thanks mate...it works... :) jeez.. it can be confusing when i was trying to find what the appropriate syntax. Where can u find all the syntax ? Sebastian Brand (Instyler Software) wrote: > > Add to the conditions your are check a "NOT Installed" to check them only > if the application isn't

Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-17 Thread Sebastian Brand (Instyler Software)
Add to the conditions your are check a "NOT Installed" to check them only if the application isn't installed yet Best regards, Sebastian Brand Deployment consultant E-Mail: sebast...@instyler.com Instyler Setup - Creating WiX-based MSI installations, elegantly. http://www.instyler.com On 18.11

Re: [WiX-users] Launch condition for checking .net framework.

2009-02-11 Thread Chad Petersen
This should do the trick as far as I now. -Original Message- From: Sachin Dubey (Tata Consultancy Services) [mailto:v-sad...@microsoft.com] Sent: Wednesday, February 11, 2009 12:39 PM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Launch condition

Re: [WiX-users] Launch condition based on feture selection

2009-01-08 Thread Scott Sam
Don't check in a launch condition. Check for the pre req's using properties then use the properties in a condition under each feature. Set the level to 0 if pre-req is not present. That way the feature won't be an option if pre-reqs aren't there. -Original Message- From: Chandra Vuppala

Re: [WiX-users] Launch condition on patch not working

2008-10-28 Thread Sébastien Mouren
2008/10/27 cemiles <[EMAIL PROTECTED]>: > > My situation is I want a launch condition to fire off if the product has yet > to be installed (it's a regsearch to look for any other related products). > If the product gets installed, I want to make it so the launch condition > doesn't fire off on pat

Re: [WiX-users] Launch condition on patch not working

2008-10-27 Thread Rob Mensching
Verbose log file should show you the order of actions. -Original Message- From: cemiles [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2008 13:53 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Launch condition on patch not working My situation is I want a launch condition

Re: [WiX-users] launch condition query

2008-10-03 Thread Sean Farrow
t: Re: [WiX-users] launch condition query In article <[EMAIL PROTECTED]>, "Sean Farrow" <[EMAIL PROTECTED]> writes: > Basically I have an installation I wrote for the same product, if this > installation exists, a registry key will tell me, I want to run the >

Re: [WiX-users] launch condition query

2008-10-03 Thread Richard
In article <[EMAIL PROTECTED]>, "Sean Farrow" <[EMAIL PROTECTED]> writes: > Basically I have an installation I wrote for the same product, if this > installation exists, a registry key will tell me, I want to run the > uninstallation. > What is the best way of doing this? Why not treat you

Re: [WiX-users] launch condition query

2008-10-03 Thread Alexander Shevchuk
PROTECTED] Sent: 30 September 2008 00:12 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] launch condition query You can use http://msdn.microsoft.com/en-us/library/aa370556(VS.85).aspx to determine if you have Windows 2000 installed and http://msdn.microsoft.com

Re: [WiX-users] launch condition query

2008-10-03 Thread Sean Farrow
: 30 September 2008 00:12 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] launch condition query You can use http://msdn.microsoft.com/en-us/library/aa370556(VS.85).aspx to determine if you have Windows 2000 installed and http://msdn.microsoft.com/en-us/library

Re: [WiX-users] launch condition query

2008-09-29 Thread Alexander Shevchuk
You can use http://msdn.microsoft.com/en-us/library/aa370556(VS.85).aspx to determine if you have Windows 2000 installed and http://msdn.microsoft.com/en-us/library/aa370329(VS.85).aspx to determine what flavor of it is installed. If you are using WiX V3, examine http://msdn.microsoft.com/en-us

Re: [WiX-users] Launch Condition - Mesasge Attribute referring to Error ID number instead of actual error messsage.

2007-11-20 Thread Bob Arnson
Sankaranarayanan wrote: > The above condition works fine as expected but I want to consolidate the > error message in ErrorProgressText.wxs file rather than hardcoding it in my > main wxs file. Is there a way to reference the error Id number in Message > attribute of Condition XML node. > No

Re: [WiX-users] Launch Condition based on Feature Selected

2007-09-20 Thread Christopher Painter
MSI/WiX doesn't handle this very well natively. LaunchConditions really only describe conditions that must evaluate for an Install to `Launch`. What you are describing is what I've come to call `Feature Constraints`. You could use the Condition table to hide features that aren't installabl

Re: [WiX-users] Launch Condition

2007-02-22 Thread Balakrishna.BK
. Message: 2 Date: Wed, 21 Feb 2007 07:28:47 -0800 (PST) From: fiordean dacian Subject: Re: [WiX-users] Launch Condition To: wix-users@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" Your condition looks correct. Check that

Re: [WiX-users] Launch Condition

2007-02-21 Thread fiordean dacian
Your condition looks correct. Check that within your you have scheduled your 'LaunchConditions' after 'AppSearch': ... Cheers, Dacian - Original Message From: Balakrishna.BK <[EMAIL PROTECTED]> To: wix-users@lists.sourceforge.net Sent: Wednesday, February 21, 2007 2:24:15

Re: [WiX-users] Launch Condition on Uninstall

2007-02-14 Thread Bob Arnson
Adriaan wrote: > How can I bypass the Launch Condition on Uninstall? > Use a condition of "Installed OR ..." so the condition is true when the product is being uninstalled. -- sig://boB http://bobs.org - Take Surveys.