Re: [WiX-users] Setting bundle variables from properties or registry entries

2012-07-26 Thread Rob Mensching
Properties are an MSI concept. Bundle Variables are a Burn concept. We named them different to avoid confusing the two. There are XxxSearch elements that can be used in Bundles to set Variables and there are XxxSearch elements that can be used in MSI to set Properties. I don't think we've done th

Re: [WiX-users] Bundle Pending reboots

2012-07-26 Thread Rob Mensching
That's by design. The current behavior keeps Burn out of all kinds of inconsistent states that no one wants to try to debug. Reboot, or avoid the reboot. On Wed, Jul 25, 2012 at 3:40 PM, Darwin Baines wrote: > Burn seems really strict on enforcing reboots. > > You can't uninstall after an inst

[WiX-users] Alternate text when upgrading

2012-07-26 Thread Crosbie, Robert (Robert)
I'm trying to add different text to an installer when in an upgrade scenario. I'm setting 3 properties based on the version detected: My approach was to copy the welcome dialog and try to provide a different description if an upgrade is detected. I'm trying to do something like

Re: [WiX-users] Deployment Framework for BizTalk (BTDF) uses Wix, Deleting *.* C:\

2012-07-26 Thread Bob Arnson
On 25-Jul-12 12:33, Ian Ceicys wrote: > Here's the log file from the Wix Target's the are executing. Those aren't WiX targets; they're BTDF targets. You want to talk to them about why it deletes files. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] Stdba HyperlinkTheme

2012-07-26 Thread Bob Arnson
On 26-Jul-12 13:42, Neil Sleightholm wrote: > Is it possible to customise the HyperlinkTheme so that the logo is different > or hidden on some pages? Move the Image element to children of the Pages you want it to appear on. As shipped, it's outside pages, so it always appears. > By the way, is t

Re: [WiX-users] Access to MSI path from custom burn BootstrapperApplication

2012-07-26 Thread Bob Arnson
On 26-Jul-12 17:46, John M. Wright wrote: > I'd then just skip the call to Engine.Apply(), thus bypassing the MSI > installers. The packages aren't available until Apply is called. Take a look at ActionState.AdminInstall for the package action to tell Burn to do an admin install. -- sig://boB h

Re: [WiX-users] MsiProperty "on the fly" and Minor upgrade/downgrade.

2012-07-26 Thread Bob Arnson
On 26-Jul-12 08:55, Ing. Tomáš Kubík, Tempo IS wrote: > Firstly, I cant find a way to set up MsiProperty "on the fly". I need setup > REINSTALL=ALL only if i reinstall the application. Burn does that for you during a repair. > Second question is Minor upgrade or downgrade (only Product version is

[WiX-users] Access to MSI path from custom burn BootstrapperApplication

2012-07-26 Thread John M. Wright
I'm creating a custom UI using the Wix 3.6 BootstrapperApplication and have a working installer using the windows installer system. However, we'd like to give the user the option of performing an "xcopy" style install instead of fully registering via the windows add/remove programs, etc. This is p

[WiX-users] Stdba HyperlinkTheme

2012-07-26 Thread Neil Sleightholm
Is it possible to customise the HyperlinkTheme so that the logo is different or hidden on some pages? I have tried various combinations but not found anything that works. By the way, is the theme code something unique to WiX or a standard? Neil Neil Sleightholm X2 Systems Limited n...@x2system

Re: [WiX-users] Extending WiX UI

2012-07-26 Thread jhennessey
Take a look at this (if you haven't already): http://wix.sourceforge.net/manual-wix3/WixUI_customizations.htm http://wix.sourceforge.net/manual-wix3/WixUI_customizations.htm I usually end up just copying from the existing source and creating my own dialogs and dialog sets. Since you can't easily

Re: [WiX-users] Extending WiX UI

2012-07-26 Thread Christopher Painter
Heh, I should have been able to think of that one! LOL Thanks. You are right, not elegant, but in this case, I'll take it. My question stands though, I'd like to have a better understanding of ways to manipulate the UI authoring provided by the extension.

Re: [WiX-users] Dont want to harvest the subfolder inside a folder using heat.exe? Any possibilty to do this? Need Help

2012-07-26 Thread jhennessey
I haven't used it myself but have you looked at John Robbins' Paraffin tool? Here's a link to it (note the current version is 3.6 I believe): http://www.wintellect.com/cs/blogs/jrobbins/archive/2010/08/31/zen-of-paraffin.aspx http://www.wintellect.com/cs/blogs/jrobbins/archive/2010/08/31/zen-of-pa

Re: [WiX-users] Extending WiX UI

2012-07-26 Thread jhennessey
Well this isn't exactly pretty but I did find a way to do what you want. You can create a CustomTable element for the ControlCondition table and then add rows as you need them (WiX didn't seem to mind that this was a standard table). Here's the WiX authoring for the ControlCondition table:

[WiX-users] signature or checksum for WiX 3.5 installer?

2012-07-26 Thread Benjamin Kaduk
I am new to Windows software development, so my apologies for any silly questions or general cluelessness. My question seems like it should be a FAQ, but I saw it neither in the WiX FAQ list nor in the past couple months of the list archives (I didn't see a good way to search the archive on the

[WiX-users] Extending WiX UI

2012-07-26 Thread Christopher Painter
I'm using WiX UI. In one scenarior I'm using Publish elements to insert ControlEvent rows to get the change I'm looking for. In another scenario I want to disabled a control? (CustomizeDlg Browse control ). I'm not being very clever in thinking of a way to do this. I was hoping to do somethi

[WiX-users] MsiProperty "on the fly" and Minor upgrade/downgrade.

2012-07-26 Thread Ing . Tomáš Kubík , Tempo IS
Hello, I have two question about managed bootstrapper in Wix3.6RC. Firstly, I cant find a way to set up MsiProperty "on the fly". I need setup REINSTALL=ALL only if i reinstall the application. If I set it in WXS (static) then normal installation failed... i guess it is only for reinstall mode