Re: [WiX-users] Bootstrapper Custom UI, Checkbox to customize install

2014-10-01 Thread newuser2014
Thank you for the advice. Now I can use checkboxes to customize my installation. However, when I tried to put the same checkbox on the modify screen for selection during uninstallation, they don't seem to work. My code looks like the following, selective installation works, but uninstallation

Re: [WiX-users] Uninstall previous version

2014-09-25 Thread newuser2014
By ProductCode, do you mean Product Id? I tried , but it seems like the installer will just install/overwrite and not remove the old application. By PackageCode, do you mean http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Uninstall-previous-version-tp7596982p7596999.html Sent from t

Re: [WiX-users] Uninstall previous version

2014-09-25 Thread newuser2014
I have the following: Is that enough and should that be modified? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Uninstall-previous-version-tp7596982p7596985.html Sent from the wix-users mailing lis

[WiX-users] Uninstall previous version

2014-09-25 Thread newuser2014
Hi, I have the Product id as follows: This seems to just overwrite the previous version and not uninstall it. After installation of the newer version, I went into Add/Remove Programs and saw that the previous version of the application still listed. Any idea on what is wrong or how to do

Re: [WiX-users] Control/Change the Name of the Msi

2014-09-24 Thread newuser2014
Got it thanks! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Control-Change-the-Name-of-the-Msi-tp7596966p7596971.html Sent from the wix-users mailing list archive at Nabble.com. --

[WiX-users] Control/Change the Name of the Msi

2014-09-24 Thread newuser2014
Hi, When I use wix to generate an msi for MyApp, the generated msi is named MyAppSetup.msi. Is there anyway I control control/change the name of the generated msi? Thank you very much for your help! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.co

[WiX-users] Heat.exe harvesting question

2014-09-24 Thread newuser2014
Hi, I have the following pre-build event for wix. "$(WIX)bin\heat.exe" dir "$(ProjectDir)/../src/bin/$(ConfigurationName)/MyAppInt" -cg MyAppFiles -gg -scom -sreg -sfrag -srd -dr AV -var var.MyAppFilesDir -out "$(ProjectDir)Fragments/MyAppFiles.wxs" I have my MyApp.exe and MyApp.exe.config files

[WiX-users] Bootstrapper Modify Setup

2014-09-19 Thread newuser2014
Hi, I've modified my Bootstrapper theme in order to support installing multiple msi during the installation process based on user selection as follows: When the user double clicks on the bootstrapper msi, is there a way for me to detect which msi has be

Re: [WiX-users] Bootstrapper Custom UI, Checkbox to customize install

2014-09-18 Thread newuser2014
Yes, I am running wix 3.8. Yep, a couple of checkboxes are all I need. Is there an example of how this is done? Thanks! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bootstrapper-Custom-UI-Checkbox-to-customize-install-tp7596905p7596907.html S

[WiX-users] Bootstrapper Custom UI, Checkbox to customize install

2014-09-18 Thread newuser2014
Hi, Is there any where to add a custom dialog to have a few checkboxes for the user to select. And base on the user selections in the checkboxes the Bootstrapper will install the user selected msi. Thank you very much for your help! -- View this message in context: http://windows-installer-x

Re: [WiX-users] Bootstrapper Crystal Prerequisite Install

2014-09-18 Thread newuser2014
Does the InstallCondition--"CrystalRuntimeXP AND (NOT VersionNT64 OR CrystalRuntime)"--look correct? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bootstrapper-Crystal-Prerequisite-Install-tp7596900p7596903.html Sent from the wix-users mailing li

[WiX-users] Bootstrapper Crystal Prerequisite Install

2014-09-18 Thread newuser2014
Hi, I have to verify and install Crystal as a prerequisite of my install in the Bootstrapper. I have implemented the following, but it doesn't seem to work. Did I make a mistake somewhere? Thank you very much in advance for your help! -- View this message in

[WiX-users] How to disable Options button on Bootstrapper

2014-09-18 Thread newuser2014
Hi, I have build an msi to install my application. I've also wrap that msi with a bootstrapper. The bootstrapper will detect and install the .NET framework. When the user double clicks on the bootstrapper msi, the screen has an Options button on it. How can I disable that button? Thank you v

[WiX-users] CustomAction to execute batch file causes uninstall to fail

2014-09-17 Thread newuser2014
Hi, I have a custom action during the installation process to execute a batch file to replace some config file. ... The installation goes smoothly. However, uninstallation fails. Do you know what might be the issue and a potential fix for this problem? Thank you very much in advance!

Re: [WiX-users] Multiple Instance and Product Code

2014-09-17 Thread newuser2014
Thanks for your reply John! Just to clarify, I would create an InstanceTransform that looks like follows: ... My question is does the productCode correspond to the http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Multiple-Instance-and-Product-Code-tp7596863p

[WiX-users] Multiple Instance and Product Code

2014-09-17 Thread newuser2014
Hi All, The product requirement at my work changed. We're being asked to support multiple instances of the same product. I've read fromthe forum that InstanceTransform is the way to go and that requires different Product Code for each instance. I've used http://windows-installer-xml-wix-toolse

[WiX-users] Conditional Install

2014-09-12 Thread newuser2014
Dear All, I'm trying to create an msi that would, base on user selection during the installation process, install either the admin or regular user of the application. This access right is controlled by an element ApplicationName.exe.config file (this is not an ideal solution, but for the interest