Re: [WiX-users] Help with building patch

2009-11-14 Thread Blair
Version 3.0 supports both the version 2 method (msimsp.exe/PatchWiz) and the "pure WiX" method (torch/pyro). Version 3.5 retains that support. Each of those two methods in the version 3 docs are described on two different pages. Not sure on the error message (although I haven't looked at the code

[WiX-users] Help with building patch

2009-11-14 Thread Schmitz, John
Hi, I have worked my way through understanding most of the things left out of or incorrect in the "Patch Building" page of Authoring (at http://wix.sourceforge.net/manual-wix2/patch_building.htm). (I've entered a bug on the page with what I've found along the way.) I just noticed that this is

Re: [WiX-users] Setting Property at Run-time not being refelected in GUI...

2009-11-14 Thread Rob Mensching
First guess is that the Property is not @Secure="yes" so it isn't going from InstallUISequence to InstallExecuteSequence. Read about MsiSecureCustomProperties for more details. On Thu, Nov 12, 2009 at 2:29 AM, Dominique Louis < dominique.lo...@amxeurope.com> wrote: > Hi all, > I have the followi

Re: [WiX-users] setupbld setup.exe & repair install

2009-11-14 Thread Rob Mensching
Don't worry. Burn will be part of WiX v3.5. Said another way, WiX v3.5 won't release without Burn. I'm just caught up in a whirlwind of change right now that has significantly impeded the progress of Burn. Getting all that unblocked is my utmost priority. On Tue, Nov 10, 2009 at 3:35 AM, warne wa

Re: [WiX-users] installing files directly from a subfolder of the installation medium

2009-11-14 Thread Rob Mensching
One thing to note is that the File and MsiFileHash tables will be wrong for that file. That could affect your packages repair and patching behavior. Ideally, you'd update those tables to ensure they have the correct metadata about the files you updated out side of the MSI. On Fri, Nov 13, 2009 at

Re: [WiX-users] setup exe built with setupbld crashes when a reboot is required.

2009-11-14 Thread Rob Mensching
Probably a bug. That bootstrapper is extremely limited in its capabilities and amount of time debugged. Attach a debugger and I expect you'll find the issue quickly. On Mon, Nov 9, 2009 at 2:09 PM, John L Krupka wrote: > > Note: I forgot to mention that I removed the ScheduleReboot and I did no

Re: [WiX-users] How to make features used like radio buttons

2009-11-14 Thread Rob Mensching
Maybe use radio buttons to set Properties then use Feature/Condition elements to control the install state of the Features. On Wed, Nov 11, 2009 at 12:33 AM, salever.lee wrote: > > How to make features work like radio buttons ? > If I want user to select only one of some features. > 2009-11-11 >

Re: [WiX-users] Displaying Alerts!!!

2009-11-14 Thread Rob Mensching
SpawnDialog? On Fri, Nov 13, 2009 at 1:57 AM, Anu Dev wrote: > Hi > > How to display a messagebox when the user navigates to dialog. I would like > to have an alert when the user navigates to InstalDirDialog. I tried with > custom script but not sure how I can use it. > > Regards > Anu > > > > >

Re: [WiX-users] SQLScript

2009-11-14 Thread Rob Mensching
There is a performance issue with the SqlScript custom action. It hasn't been fixed yet. SqlFileSpec cannot be used to attach .mdf files/.ldf files. Instead, install the .mdf/.ldf files then use a SqlString to run the ATTACH SQL command. (I forget the exact syntax but I've used that in a past life

Re: [WiX-users] FW: InstallShield 2010 vs InstallAware 9

2009-11-14 Thread Rob Mensching
Other people have covered the technical aspects of the WiX toolset all over. To summarize, I think it is safe to say that if the Windows Installer supports it the WiX toolset supports it, the only question is how much education is required before you can accomplish what you want done. But I real

Re: [WiX-users] Wix online documentation

2009-11-14 Thread Rob Mensching
Open a bug. There is a "documentation" group. On Sat, Nov 14, 2009 at 9:44 AM, Schmitz, John wrote: > I've found some unclear items, and at least one error in the page at > http://wix.sourceforge.net/manual-wix2/patch_building.htm. I don't see any > "feedback" link, or commentary thread on that

Re: [WiX-users] Wix Help

2009-11-14 Thread Schmitz, John
Thanks, Bob! I found it where my setup/installer software installed it. Thanks, John From: Bob Arnson [...@joyofsetup.com] Sent: Saturday, November 14, 2009 12:44 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Wix Help

Re: [WiX-users] Wix Help

2009-11-14 Thread Bob Arnson
Schmitz, John wrote: > Ultimately, I may have some specific questions, but right now I'm just > wondering if there's a way to download the WIX help, rather than having to > navigate through the web page version of that I see under the Documentation > links. > WiX.chm is included in every WiX

Re: [WiX-users] Differences between WiXUI_InstallDir and WiXUI_Advanced

2009-11-14 Thread John Robbins
Bob, >WixUI_Advanced was something Rob and I designed and implemented in one >night when figuring out what a good UX for the WiX installer would be. >It succeeded there. The per-user stuff was there with the idea that we >could support someone who just wanted to get the toolset out of the >install

[WiX-users] Wix online documentation

2009-11-14 Thread Schmitz, John
I've found some unclear items, and at least one error in the page at http://wix.sourceforge.net/manual-wix2/patch_building.htm. I don't see any "feedback" link, or commentary thread on that page. So new-user question #2 is, how/where can I submit feedback on pages like this one? Thanks, John J

[WiX-users] Wix Help

2009-11-14 Thread Schmitz, John
Hi, I've been using WIX indirectly through a setup/installer product, but now I'm trying to make product patch using some instructions that they pointed out to me at http://wix.sourceforge.net/manual-wix2/patch_building.htm. Ultimately, I may have some specific questions, but right now I'm just

Re: [WiX-users] Performance Counters supported for MSP?

2009-11-14 Thread Bob Arnson
Jeff Perrigo wrote: > We have some performance counters that are registered as part of our install. > When we try to install them as part of an MSP they don't get registered. > Are these custom actions executed for patches? > How are you registering performance counters? Is the component th

Re: [WiX-users] Differences between WiXUI_InstallDir and WiXUI_Advanced

2009-11-14 Thread Bob Arnson
John Robbins wrote: > With WixUI_Advanced, clicking on the Advanced button gets me to a dialog that > says "[ProductName] will be installed in a per-user folder and be available > for your user account. You do not need local Administrator privileges." Kind > of a bummer that you can't change the

Re: [WiX-users] Rollback and uninstall sequences...

2009-11-14 Thread Bob Arnson
Blair wrote: > The idea being that since remove is the opposite of install, and the > rollback does the opposite of whatever transaction you were running, then > you write the minimal amount of custom action code to make it all work > (which is only two deferred routines in your CA dll). > Exce

Re: [WiX-users] best way to deploy C++ runtime?

2009-11-14 Thread Richard
In article , "Blair" writes: > Which is exactly the reason so many people ship the policies when they > install the runtimes. Everything I saw describing how to use the merge modules with WiX recommended against using the policy MSMs. If I adjust my application manifest to report the corr