Re: [WiX-users] conditional installation if application path found

2010-04-09 Thread Pally Sandher
lto:sravi...@yahoo.com] Sent: 09 April 2010 11:50 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] conditional installation if application path found I did as you said and build msi but on installing i am getting the standard error message like the below Another version of this product is inst

Re: [WiX-users] conditional installation if application path found

2010-04-09 Thread subramanyeswari
I did as you said and build msi but on installing i am getting the standard error message like the below Another version of this product is installed and installation of this version cannot contnue etc., Is there a way to install. I am selecting install option on right click on the msi. Pleas

Re: [WiX-users] conditional installation if application path found

2010-04-09 Thread Pally Sandher
ndows Installer XML toolset. Subject: Re: [WiX-users] conditional installation if application path found APPFOUND="false" is wrong. Just use APPFOUND. This is covered in the tutorial extensively -> http://www.tramontana.co.hu/wix/lesson1.php#1.4 Palbinder Sandher Software Deployment &

Re: [WiX-users] conditional installation if application path found

2010-04-09 Thread Pally Sandher
09 April 2010 10:05 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] conditional installation if application path found Hi, I did exactly as what you said but the message is not displayed. he

Re: [WiX-users] conditional installation if application path found

2010-04-09 Thread subramanyeswari
Hi, I did exactly as what you said but the message is not displayed. here is my wxs file. APPFOUND="false" What is wrong with this wix file? Re

Re: [WiX-users] conditional installation if application path found

2010-04-08 Thread subramanyeswari
thank you -- View this message in context: http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4875451.html Sent from the wix-users mailing list archive at Nabble.com. -- Download IntelĀ® Pa

Re: [WiX-users] conditional installation if application path found

2010-04-08 Thread Alan Sinclair
what i'd do is 1 - have a property APPFOUND with a default value "false" 2 - use Appsearch to set the property to something (anything) different from "false" 3 - use a LaunchCondition that tests APPFOUND="false", with a suitable message shown when the test is true __