Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-07 Thread Rob Mensching
Take a look at the bundle log file. On Wed, Nov 7, 2012 at 4:32 PM, StevenOgilvie wrote: > Okay I have my main MSI NOT in ARP: > > > > > > > And in the bundle.wxs > > DisableModify="yes" > DisableRemove="no" > DisableRepair="no" > > and my MSI is set as: > > DisplayName="$(var.ProductName

Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-07 Thread StevenOgilvie
Okay I have my main MSI NOT in ARP: And in the bundle.wxs DisableModify="yes" DisableRemove="no" DisableRepair="no" and my MSI is set as: So when I do go into ARP I don't see the MSI in it... I do see the bootstrapper (bundle.wxs) there, I run uninstall, choose uninstall, but it only rem

[WiX-users] Questions on custom actions section on Wix.chm and DTF.chm

2012-11-07 Thread lzy126_2012
Hi there, I am completely a freshman to WiX. And I am learning how to build a managed CA dll and execute it in MSI. First, I have read the following sections in WiX Documentation (WiX.chm) shipped by the wix setup 3.7 (the lastest): "Developing for WiX" -->"Developing WiX Extensions" -

[WiX-users] ExePackage Progress

2012-11-07 Thread Neil Sleightholm
Can anyone tell me how the burn progress bar works for ExePackages? I have a bundle with several Exe packages (one of which is SQL Express) and a couple of MSI packages and the progress bar gets to 100% way before the install has completed. On an upgrade where only the MSIs are being installed i

[WiX-users] Customize Feature Tree based on custom action

2012-11-07 Thread Ravi Raj
I have implemented an installer with feature tree having three components to select for installation. Now I want to do some customization to this tree. 1) I want to make first option always selected and user cannot deselect this. 2) On installer runs, if component 2 is present (checked via custom

Re: [WiX-users] Problem in Major upgrade

2012-11-07 Thread Neil Sleightholm
Take a look at the element, it make authoring this much simpler http://wix.sourceforge.net/manual-wix3/major_upgrade.htm. Neil -Original Message- From: Chaitanya [mailto:chaita...@pointcross.com] Sent: 07 November 2012 09:43 To: WiX-users@lists.sourceforge.net Subject: [WiX-users] Pro

Re: [WiX-users] Problem in Major upgrade

2012-11-07 Thread Chad Petersen
A person does need to use OnlyDetect="no" to have a product removed. With it set to yes it will only detect that it is there, but not remove it. It's at least one thing to try. -Original Message- From: Chaitanya [mailto:chaita...@pointcross.com] Sent: Wednesday, November 07, 2012 1:43 A

Re: [WiX-users] Problem in Major upgrade

2012-11-07 Thread Chris Lord
Chaitanya What version of Wix are you using? Chris -Original Message- From: Chaitanya [mailto:chaita...@pointcross.com] Sent: Wednesday, November 07, 2012 4:43 AM To: WiX-users@lists.sourceforge.net Subject: [WiX-users] Problem in Major upgrade Hi, Iam trying to do major upgrade. It

Re: [WiX-users] Burn: Multiple Apply phases

2012-11-07 Thread Igor Brejc
Hi Lukas, Can you show us your install log file? On Wed, Nov 7, 2012 at 11:43 AM, Lukáš Tínes | ALVAO wrote: > Hi, > > I am fairly new to the Burn engine. I am writing managed BAand I stumble > upon this weird thing: > After ApplyComplete event (which according to documentation should be > fire

[WiX-users] Burn: Multiple Apply phases

2012-11-07 Thread Lukáš Tínes | ALVAO
Hi, I am fairly new to the Burn engine. I am writing managed BAand I stumble upon this weird thing: After ApplyComplete event (which according to documentation should be fired when the engine has completed installing the bundle) sometimes i get a few more apply phases (ApplyBegin - ApplyComplet

[WiX-users] Problem in Major upgrade

2012-11-07 Thread Chaitanya
Hi, Iam trying to do major upgrade. Its doing action but in my control panel it is showing two entries don't want two entries. Here is my upgrade code. newProductFound Iam changing the product code and maintaining upgrade code same. Throu