Re: [WiX-users] Multiple entries in ARP

2012-08-21 Thread Neil Sleightholm
This is with the standard BA. With an MSI you can get the same behaviour but it is easy to override and by default it would warn you that an existing product was installed. I find this a real pain when testing as usually I would link the version to the version of the primary MSI and this doesn't

Re: [WiX-users] crc error on wix 3.7 aditional downloads

2012-08-21 Thread Rob Mensching
I just downloaded wix37-binaries.zip and extracted fine for me (using explorer). WiX v3.7 also just installed correctly. WiX v3.7 details here: http://robmensching.com/blog/posts/2012/8/21/Enter-WiX-v3.7-toolset On Tue, Aug 21, 2012 at 9:38 PM, Sean Farrow wrote: > Hi: > I've just tried download

[WiX-users] crc error on wix 3.7 aditional downloads

2012-08-21 Thread Sean Farrow
Hi: I've just tried downloading the first build of wix 3.7-3.7.8.21.0. The exe downloads fine but I'm getting crc errors on the additional downloads. I've tried with ie9 and firefox. I'm using power archiver 2012 as my unzipper-I don't think this should make a difference. Any help appreciated. Ch

Re: [WiX-users] Multiple entries in ARP

2012-08-21 Thread Rob Mensching
It's up to the BA. Presumably the UpgradeCode is the same (since you just rebuilt) so the BA is notified that a "related bundle" with the exact same version is on the machine. The BA can decide that is fine and let the new bundle install SxS. You can get the same behavior with Windows installer pa

Re: [WiX-users] Windows 7 Ultimate encryption - MSI fails

2012-08-21 Thread Rob Mensching
It appears the Windows Installer is dying. It looks like Burn is handling the files just fine. Have you tried just installing the MSIs without burn on encrypted folders? This could be a Windows Installer bug. On Tue, Aug 21, 2012 at 11:18 AM, Wesley Manning wrote: > Hi Rob, > > Here are the logs

Re: [WiX-users] Best way to remove a feature in another installed app at install time

2012-08-21 Thread Rob Mensching
That API only works on the currently installing MSI not on other MSIs. There is nothing wrong with installing your product SxS but if that is your design, you'll want to evaluate your use of shared resources (such as registry keys) because they'll just get broken in lots of different ways. That's b

Re: [WiX-users] Windows 7 Ultimate encryption - MSI fails

2012-08-21 Thread Wesley Manning
Hi Rob, Here are the logs showing burn and three MSI's. The first two MSIs are optional, but the third MSI is required. There is more MSIs after the third one but obviously it stops at first required MSI that fails. DYNAGEN_Configurator_20120821093207.log ---

Re: [WiX-users] Best way to remove a feature in another installed app at install time

2012-08-21 Thread Matt O'Connell
OK fair enough. I was hoping not to have to patch the older product if possible. I was hoping WiX might do something like could be done via the automation interface'sFeatureRequestState property. > Is the use

Re: [WiX-users] Multiple entries in ARP

2012-08-21 Thread Neil Sleightholm
This seems to be reproducible, if you rebuild that package with the same version number a duplicate entry appears in ARP - this feels like a bug to me but before I report it I wonder if anyone has a different opinion. Neil -Original Message- From: Neil Sleightholm [mailto:n...@x2systems

Re: [WiX-users] Windows 7 Ultimate encryption - MSI fails

2012-08-21 Thread Wesley Manning
Attached are the logs. Wes -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: August-21-12 12:36 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Windows 7 Ultimate encryption - MSI fails Log file(s) showing the problem would

Re: [WiX-users] Best way to remove a feature in another installed app at install time

2012-08-21 Thread Rob Mensching
AFAIK, you can't really do that. You could try to condition the Feature and then set something in the new install that causes the old installs Feature condition to evaluate to false and then have the user repair the old install. That *might* get the feature to turn off (since it's condition is fals

Re: [WiX-users] Windows 7 Ultimate encryption - MSI fails

2012-08-21 Thread Rob Mensching
Log file(s) showing the problem would be helpful first. On Tue, Aug 21, 2012 at 7:28 AM, Wesley Manning wrote: > Hi, > > I have a co-worker that installed Windows 7 Ultimate and it appears that > encryption was set as when he downloaded our burn package (which installs > several MSIs) its files

Re: [WiX-users] WiXVSExtension for Visual Studio 11

2012-08-21 Thread Rob Mensching
Already does, looks like the documentation needs updating. Feel free to find a doc bug. On Tue, Aug 21, 2012 at 7:41 AM, Rob Hamflett wrote: > Is there any word on when WiXVSExtension will have properties, etc, for > Visual Studio 11? > > Thanks, > Rob > > > > ---

Re: [WiX-users] Custom Action before UI WIX

2012-08-21 Thread Natalie Carr
Hi Rob, I finally figured that out, my only problem is now I run my custom action before="AppSearch" but it flashes up the WelcomeDlg for a few seconds before my CustomWelcomeDlg. Any ideas? Thanks -Original Message- From: Rob Hamflett [mailto:rob_hamfl...@sn.scee.net] Sent: 21 August 2

[WiX-users] Windows 7 Ultimate encryption - MSI fails

2012-08-21 Thread Wesley Manning
Hi, I have a co-worker that installed Windows 7 Ultimate and it appears that encryption was set as when he downloaded our burn package (which installs several MSIs) its files were encrypted. (1) When he tried to install it, the encryption caused the package to fail install. (2) When he unen

[WiX-users] WiXVSExtension for Visual Studio 11

2012-08-21 Thread Rob Hamflett
Is there any word on when WiXVSExtension will have properties, etc, for Visual Studio 11? Thanks, Rob -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landsca

Re: [WiX-users] Custom Action before UI WIX

2012-08-21 Thread Rob Hamflett
On 21/08/2012 10:35, Natalie Carr wrote: > Can anyone please tell me how to change the product name that shows up on > the UI to the property value I retrieve from my custom action. I have tried > everything that I can think of and still no joy. :( Use a property in your dialog title e.g. Title="W

[WiX-users] Best way to remove a feature in another installed app at install time

2012-08-21 Thread Matt O'Connell
Hi WiX users I've got a product B that shares a (hidden) feature with it's predecessor A. If I install A over B the registry we use toggles back the the old app location. Since we may want to have update B's feature at some point this is bad. My company doesn't like to uninstall the old produc

Re: [WiX-users] Custom Action before UI WIX

2012-08-21 Thread Natalie Carr
Can anyone please tell me how to change the product name that shows up on the UI to the property value I retrieve from my custom action. I have tried everything that I can think of and still no joy. :( -Original Message- From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] Sent: 20 Augus

Re: [WiX-users] ServiceInstall does NOT remove service during uninstall

2012-08-21 Thread Christoffel le Roux
Sorry some attachments did not get through. Harvest transform files http://www.w3.org/1999/XSL/Transform"; xmlns:wix="http://schemas.microsoft.com/wix/2006/wi";>

Re: [WiX-users] Custom Action before UI WIX

2012-08-21 Thread Natalie Carr
Thank you, I will try that. I was reading up on transforms, would this be correct to change the product name? Thanks -Original Message- From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] Sent: 20 August 2012 17:22 To: General discussion for Windows Installer XML toolset. Subject: Re: [

Re: [WiX-users] 64bit installer with Wow redirector on the properties

2012-08-21 Thread Phil Hannent
Good morning, I tried that: The redirector appears to be applying to the property regardless. Regards Phil > -Original Message- > From: Phil Wilson [mailto:phil.wil...@mvps.org] > Sent: 20 August 2012 16:48 > To: 'General discussion for Windows Installer XML toolset.' > Subjec