Re: [WiX-users] Installing into the roaming profile

2012-04-23 Thread Osanger, Martin
Thanks for your answer. Is there any other opportunity or what's a better (supported) way to handle roaming profiles? only per machine installations? kind regards, Martin -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Freitag, 20. April 2012 16:16 To:

Re: [WiX-users] Burn, MsiPackage and DisplayInternalUI

2012-04-23 Thread Bertrand D
If I set DisplayInternalUI to no my message box is indeed displayed. However the other two problem still occur: clicking on the link FailureLogFileLink or the close button has no effect. Actually the problem comes from using a custom theme file: bal:WixStandardBootstrapperApplication

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

2012-04-23 Thread Pally Sandher
Further to this I'm also getting no UI for the MSP package below even though DisplayInternalUI=yes. Not a massive issue just a bit different to what I was expecting. It upgrades perfectly fine. Palbinder Sandher Software Platform Engineer T:+44 (0) 141 945 8500 F:+44 (0) 141 945 8501

Re: [WiX-users] Burn feedback

2012-04-23 Thread Pally Sandher
SuppressOptionsUI=yes hides the Options button. Cheers Bob (although if there was documentation for BalExtension...). Running the generated burn executable with /passive or /silent still runs the .NET 4.0 client profile installer with full UI because there's no Attribute in the ExePackage

[WiX-users] Prioritize Launch Conditions

2012-04-23 Thread Ravi Raj
I want to prioritize the launch conditions I am using. I want that first installer checks OS then Admin privilege then DotNet and then component search. I have created this file as below: ?xml version=1.0 encoding=UTF-8? Wix xmlns=http://schemas.microsoft.com/wix/2006/wi; Fragment Property

Re: [WiX-users] Burn feedback

2012-04-23 Thread Pally Sandher
Rob M. others explain how to do it correctly in this thread - http://sourceforge.net/mailarchive/message.php?msg_id=28657655 I haven't attempted to implement this as yet however since it requires modifying the wix2010.targets file but I'll have to look into it sometime this week as I'll need

Re: [WiX-users] Prioritize Launch Conditions

2012-04-23 Thread Peter Shirtcliffe
You can't set an order for launch conditions. Many people use type 19 custom actions instead. You can control the order in the sequence then. CustomAction Error=25003 Id=EnsurePrivileged / InstallExecuteSequence Custom Action=EnsurePrivileged Before=AppSearchnot Privileged/Custom I

[WiX-users] Multiple port bindings in WebAddress property

2012-04-23 Thread Lars Augensen
Hi, my apologies if this is covered somewhere I have yet to discover, but: Is it possible to create multiple bindings with the WebAddress property, like so: iis:WebAddress Id=AllUnassigned Port=80,81 / or iis:WebAddress Id=AllUnassigned Port=80 Port=81 / ? I suspect that this hasn't been

Re: [WiX-users] Burn feedback

2012-04-23 Thread Neil Sleightholm
Just for info you don't modify wix2010.targets but your wixproj, you are overriding the tasks that are defined in wix2010.targets. This didn't work for me as my certificate is not in the certificate store. Neil Neil Sleightholm n...@x2systems.commailto:n...@x2systems.com On 23 Apr 2012, at

Re: [WiX-users] Multiple port bindings in WebAddress property

2012-04-23 Thread Neil Sleightholm
You can't do that but you can create 2 iis:Website elements one for port 80 and other 81 - that has worked for me. Neil Neil Sleightholm n...@x2systems.commailto:n...@x2systems.com On 23 Apr 2012, at 13:00, Lars Augensen wrote: Hi, my apologies if this is covered somewhere I have yet to

Re: [WiX-users] How to get heat.exe to harvest

2012-04-23 Thread Rob Mensching
Thanks. On Mon, Apr 23, 2012 at 1:19 AM, Alexander Krivács Schrøder alexander.schro...@mermaid.no wrote: All I had to do to get it working again was to follow E. Timothy's suggestion. Thanks for that, by the way. :) Here, I made a bug report.

Re: [WiX-users] Burn feedback

2012-04-23 Thread Bob Arnson
On 22-Apr-12 17:06, Neil Sleightholm wrote: That isn't the way it is coded, I coded it, so I'm familiar. I didn't know about the support for a license-less BA, so I didn't code for that possibility. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] Burn feedback

2012-04-23 Thread Bob Arnson
On 23-Apr-12 07:04, Pally Sandher wrote: SuppressOptionsUI=yes hides the Options button. Cheers Bob (although if there was documentation for BalExtension...). There is, at least for WixStandardBootstrapperApplication Element (Bal Extension). It doesn't seem to be getting on the Web site for

Re: [WiX-users] Burn feedback

2012-04-23 Thread Neil Sleightholm
I assume we are talking at cross purposes, license-less BA does work but the schema doesn't allow it unless you set the LicenceUrl to a single space - that is what I meant by it being code that way. Anyway I have raised a defect for it so hopefully it can be addressed. Neil -Original

[WiX-users] Import rtf file to a scrollable text control

2012-04-23 Thread Uma Harano
Hi, I would like to import an rtf file into the Text column of the Control table for a Scrollable Text Control. (Into a msi that already exists). I would like to do this during my build process. It should have no UI intervention (so not Orca or any authoring tool). Is it possible to do this

Re: [WiX-users] Import rtf file to a scrollable text control

2012-04-23 Thread Rob Mensching
Wix can do this when building your MSI. On Mon, Apr 23, 2012 at 4:41 PM, Uma Harano uhar...@esri.com wrote: Hi, I would like to import an rtf file into the Text column of the Control table for a Scrollable Text Control. (Into a msi that already exists). I would like to do this during my

Re: [WiX-users] Import rtf file to a scrollable text control

2012-04-23 Thread Uma Harano
Hi Rob I need to fix the license agreement in a msi file that has already been built. I cannot unfortunately rebuild the msi again. So I have been fixing the msi with the new license agreement using orca. I would like to instead so this with a commandline tool with no UI. How can I do this?