[WiX-users] Possible bug with Burn in perUser upgrade scenario?

2012-04-27 Thread Henning Krause
Hi, I've probably run into a bug with the latest WIX 3.6 build (see issue https://sourceforge.net/tracker/?func=detailaid=3521939group_id=105970atid=642714) on SourceForge. Basically, I've an MSI which installs a file in a per-user scenario: ?xml version=1.0 encoding=UTF-8? Wix

[WiX-users] Prevent Downgrade without any message prompt

2012-04-27 Thread shengyixing
Hi All, I'm trying to perform a major upgrade for my installer, and use Upgrade table to detect the existing installer version. /Upgrade Id=$(var.UpgradeCode) UpgradeVersion Minimum=$(var.ProductVersion) IncludeMinimum=no OnlyDetect=yes Property=NEWERVERSIONDETECTED /

Re: [WiX-users] Burn - MSIPackage InstallCondition evaluates to false, attempts minor upgrade

2012-04-27 Thread Pally Sandher
Ah I probably wasn't clear. v1 had Product Code A, v2 has Product Code B. Hence I have a upgrade patch for versions 2.0 or 2.1 - 2.2 while a Major Upgrade for 1.x - 2.x Patching works fine now with Burn using the MSP, however for anyone who doesn't have any version of this product installed or

[WiX-users] bug in wix 3.6?

2012-04-27 Thread Sean Farrow
Hi Focks: I think I've found a bug in wix 3.6: I'm trying to create a solution that allows building two msi's one x86 and one x64. I have to following in my package element to this end: Package InstallerVersion=300 Compressed=yes InstallScope=perMachine

[WiX-users] Burn:How to achieve parallel download/installation with own downloader.

2012-04-27 Thread Miss Parker
Hello, My Bootstrapper application needs to have parallel download and installation, which Burn doesn't support as far as I know. I've implemented my own downloader that alerts Burn when the file is downloaded. I put a Retry in ResolveSource, and it calls that until it gets a flag telling it to

Re: [WiX-users] Burn - Uninstall from programs features causes reinstall of WiX built MSI package

2012-04-27 Thread Pally Sandher
Rob this is what I get when I click Uninstall from ARP then click Uninstall in the Burn dialog - http://upload.iesve.com/downloads/uninstall.png The MSI isn't anything complex, it's using a completely unmodified WiXUI_InstallDir for UI. Palbinder Sandher Software Platform Engineer T: +44 (0)

Re: [WiX-users] Burn - Uninstall from programs features causes reinstall of WiX built MSI package

2012-04-27 Thread Pally Sandher
It's not really 'dogfooding' as I've never written any of the WiX code =) I've been using WiX since Summer 2006 which was v2.0 didn't move to v3.0 until around Summer 2008 followed by v3.5 in Autumn 2010 lived on the cutting edge with all 3 versions. I would've moved to WiX v3.6 sooner but we

Re: [WiX-users] Recommended way to implement installer key (serial number you need to install the msi)

2012-04-27 Thread Pally Sandher
http://wix.tramontana.co.hu/tutorial/user-interface/new-link-in-the-chain That should get you started. Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment** Integrated

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Rob Mensching
Use the arch switch on the candle coomand-line and remove the Platform attribute. On Fri, Apr 27, 2012 at 5:10 AM, Sean Farrow sean.far...@seanfarrow.co.ukwrote: Hi Focks: I think I've found a bug in wix 3.6: I'm trying to create a solution that allows building two msi's one x86 and one x64.

Re: [WiX-users] Prevent Downgrade without any message prompt

2012-04-27 Thread Rob Mensching
Yes,. use the WixFailWithSuccess (named something like that) custom action. On Fri, Apr 27, 2012 at 2:53 AM, shengyixing shengyix...@hotmail.comwrote: Hi All, I'm trying to perform a major upgrade for my installer, and use Upgrade table to detect the existing installer version. /Upgrade

[WiX-users] chrome.exe never gets shutdown by RM

2012-04-27 Thread E. Timothy Uy
In fact, if you add it to iexplore and firefox which usually close, nothing gets close. Is there any way around this? I presume this is outside Wix domain since chrome does show up in FilesInUse. Respectfully, Tim -- Live

Re: [WiX-users] Burn:How to achieve parallel download/installation with own downloader.

2012-04-27 Thread Rob Mensching
Burn supports paralllel download. The setting is named something just like that on the Chain element. On Fri, Apr 27, 2012 at 5:38 AM, Miss Parker caisa.westl...@gmail.comwrote: Hello, My Bootstrapper application needs to have parallel download and installation, which Burn doesn't support as

Re: [WiX-users] Bundle failing to build after upgrading to latest release (3.6.2823)

2012-04-27 Thread Pally Sandher
Will do Heath, thanks for resolving it so quickly. Apologies for not getting time to get some detailed debug info using the PDBs as Bob requested, was planning on making some time for doing it this afternoon but it's a moot point now =) Palbinder Sandher Software Platform Engineer T: +44 (0)

[WiX-users] Using\creating a link in a dialog window

2012-04-27 Thread victorwhiskey
Hello all, Is it possible to use/create a link in a dialog window? I would like to have a link to a support website in a localized dialog window. Thank you. -- View this message in context:

Re: [WiX-users] Possible bug with Burn in perUser upgrade scenario?

2012-04-27 Thread Rob Mensching
The wixstdba does not show special UI for upgrade scenarios. It just shows install (or an error message if it thinks it will downgrade what is on the machine). That said, it should remove the previous Bundle when installing the new one. Can you share out more of the log? The part that shows the

Re: [WiX-users] Using\creating a link in a dialog window

2012-04-27 Thread Rob Mensching
Yes. MSI 5.0 (I think 5.0 was the first) supports it. On Fri, Apr 27, 2012 at 8:09 AM, victorwhiskey victorhwhis...@yahoo.comwrote: Hello all, Is it possible to use/create a link in a dialog window? I would like to have a link to a support website in a localized dialog window. Thank you.

Re: [WiX-users] Possible bug with Burn in perUser upgrade scenario?

2012-04-27 Thread Henning Krause
Hi Rob, yes, my fault. I was under the impression that there should be a custom UI for upgrades. Couldn't reproduce the issue with the duplicate ARP entry, so I closed the bug. Kind regards, Henning -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Friday,

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Sean Farrow
Is there a way to specify that in visual studio? Cheers Sean. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: 27 April 2012 15:37 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] bug in wix 3.6? Use the arch switch on the

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Rob Mensching
IIRC, by default it picks it up from your VS Configuration. On Fri, Apr 27, 2012 at 9:04 AM, Sean Farrow sean.far...@seanfarrow.co.ukwrote: Is there a way to specify that in visual studio? Cheers Sean. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: 27

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Sean Farrow
So if I have a solution that has an x64 platform, and don't include a platform attribute, would this work? Cheers Sean. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: 27 April 2012 17:12 To: General discussion for Windows Installer XML toolset. Subject: Re:

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread David Watson
Leave $var.platform in your Package@Platform then in the solution configuration manager make sure you set the platform correctly for the relevant project. -Original Message- From: Sean Farrow [mailto:sean.far...@seanfarrow.co.uk] Sent: 27 April 2012 17:33 To: General discussion for

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Castro, Edwin G. (Hillsboro)
Last time I looked at the WiX .targets files I noticed that they create an InstallerPlatform property that is passed to candle. The InstallerPlatform property can be explicitly set in your .wixproj. When it is not explicitly set, the WiX .targets files use the Platform property to determine

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Sean Farrow
Hi: I am building one msi for x86, and x64 from the same project. If I am interpreting you correctly, I can let visual studio create the new solution platform for me. Please correct me if I'm wrong! Cheers Sean. -Original Message- From: Castro, Edwin G. (Hillsboro)

Re: [WiX-users] Burn - Uninstall from programs features causes reinstall of WiX built MSI package

2012-04-27 Thread Bob Arnson
On 27-Apr-12 10:32, Pally Sandher wrote: I'm quite happy to use the cutting edge (in some ways it's preferable) but I get a little irked when things I've been led to believe are the standard ways of doing things with Windows Installer by yourself other WiX contributors/developers are

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Castro, Edwin G. (Hillsboro)
That is correct. You will still need to build twice as only one platform gets built at a time. You'll want to take a look at what projects are selected for each solution platform and make decisions about how to build your solution. Perhaps you need to build 3 times: AnyCPU, x86, x64. Edwin G.

Re: [WiX-users] Install Failed, Log Attached

2012-04-27 Thread Hoover, Jacob
If it's a .Net assembly of managed code, then you would use RegAsm (internally). If it's a native binary, then you would use regsvr32 (internally). The reason I say internally is the ability to control what they create or remove is out of your hands if you depend on these tools. This is why

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Sean Farrow
Hi: And where finally can I see what is building for what platform? I know I can see but don't know where! Cheers Sean. -Original Message- From: Castro, Edwin G. (Hillsboro) [mailto:edwin.cas...@fiserv.com] Sent: 27 April 2012 20:02 To: General discussion for Windows Installer XML

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Castro, Edwin G. (Hillsboro)
Option 1: Select Configuration Manager from the Build menu. Option 2: Select Configuration Manager... from the solution context menu in Solution Explorer or Solution Navigator. Option 3: Select Configuration Manager... from the Solution Configurations drop down on the Standard toolbar In the

[WiX-users] Bundle fails on WIN2K machine .exe is not a valid Win32 application

2012-04-27 Thread Rich Dingle
Is the WiX Standard Bootstrapper Application compatible with Windows 2000? My individual MSI packages all work fine but all my bundles fail immediately even if I save them to a local folder: [bundleName].exe is not a valid Win32 application. Target Machine: Win2K Pro SP4 w/KB891861 'roll up'

Re: [WiX-users] bug in wix 3.6?

2012-04-27 Thread Neil Sleightholm
I have just rebuilt my x86/x64 project without the Package/@Platform attribute in VS and it does build correctly. I needed to build both x86 x64 at the same time so I could reference them in a burn project, to do this I duplicated my wixproj file and set one as an x86 build and the other as

Re: [WiX-users] Bundle fails on WIN2K machine .exe is not a valid Win32 application

2012-04-27 Thread Rob Mensching
No. Windows 2000 is not supported by the VS 2010 CRT. Windows XP (I think SP1+). On Fri, Apr 27, 2012 at 2:34 PM, Rich Dingle rdin...@accelitec.com wrote: Is the WiX Standard Bootstrapper Application compatible with Windows 2000? My individual MSI packages all work fine but all my bundles fail