Re: [WiX-users] Getting current downloading package name in BA for Web installer

2014-03-20 Thread Saravana1109
I have another doubt in uninstallation. The created bundle is having more than one MSI packages. I will install all msi packages files in a machine(consider 3 msi packages). Now I need to remove any of one installed msi packages while re-run the setup. How can i do this using custom bootstrappe

Re: [WiX-users] Getting current downloading package name in BA for Web installer

2014-03-17 Thread rw1017
Look through the log files to see why the uninstall for the msi's didn't go through. If the Bundle was uninstalled, there has to be a log file detailing the actions of each MSI. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Getting-current-downl

Re: [WiX-users] Getting current downloading package name in BA for Web installer

2014-03-04 Thread Saravanan
Hi, I have a problem in Uninstalling the msi which are installed by custom BA. While uninstalling the setup from Control Panel -> Add or remove programs, it will uninstall the bundle only. It doesn't uninstall the MSI files. Is bootstrapper uninstall the installed MSI files by default or we need

Re: [WiX-users] Getting current downloading package name in BA for Web installer

2014-02-26 Thread Rob Mensching
2014 10:24 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Getting current downloading package name in BA for Web installer Hi, I have added two msipackages element in Wix bundle. http://{URL}/SampleMSI1.msi"; Compressed="no" Permanent="yes" /> http:/

Re: [WiX-users] Getting current downloading package name in BA for Web installer

2014-02-26 Thread Saravanan
Hi, I have added two msipackages element in Wix bundle. http://{URL}/SampleMSI1.msi"; Compressed="no" Permanent="yes" /> http://{URL}/SampleMSI2.msi"; Compressed="no" Permanent="yes" /> While installing setup, all two packages are downloaded first and then installation

Re: [WiX-users] Getting current downloading package name in BA for Web installer

2014-02-26 Thread rw1017
when the bundle is started and cached(different than package cache), it creates a BootstrapperApplicationData.xml in the cached folder. You can parse this based on the PackageID to get the DisplayName. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.c

[WiX-users] Getting current downloading package name in BA for Web installer

2014-02-25 Thread Saravanan
Hi All, I am using Wix 3.7. I have created custom bootstrapper application for creating web installer setup. It downloads and install the MSI file from server. MSI file installation is started once download complete. I am not facing any problem with this operations. I have some doubts in following