Re: [WiX-users] Wix Pre-requisite Dialog

2008-08-12 Thread pavan gadam
> > > Subject: Wix Pre-requisite Dialog > Hi all, > > I wanted to create a pre-requisite dialog box which show whether particular > components are Installed or not in Wix. > > I was able to get the Registry value into a property IISCHECK > > > < > Property Id="IISCHECK"> > > < > RegistrySearch Id=

Re: [WiX-users] SP1 for VS2008 / .Net 305 released

2008-08-12 Thread Tony Juricic
Have you had any success in somehow using that bootstrapper with WiX generated MSI? Can you share some insights/experiences? For me installing SP1 turned out into a "progress bar sits there not moving anywhere for hours" experience so the whole idea of a smaller "Client Profile" footprint turned

Re: [WiX-users] Conditional install of feature

2008-08-12 Thread Jeff Eldridge
Ok, all valid points and need to be looked at. But, what about my original question? From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Wilson, Phil [EMAIL PROTECTED] Sent: 12 August 2008 18:13 To: General discussion for Windows Installer XML toolset.

[WiX-users] newby wants to know best way to add java jar step to installation

2008-08-12 Thread kkmca
I need to add a java jar step to an existing installer that installs jboss and application wars. this java jar step will run a database schema installer. how can i launch java from within the installer and how can i capture the success or failure of this side process? -- View this message in con

Re: [WiX-users] Error LGHT0293

2008-08-12 Thread Chad Petersen
Make sure you clear out any old *.wixobj files each time you build. I run into this if I rename something and don't flush the wixobjs. At least it is something worth checking. Might not be the same issue. Chad -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [WiX-users] XmlConfig XPath problem

2008-08-12 Thread Evans, Jim
You're right, I did. It's a typo on my part. In my actual code, the name attributes match. Here is the corrected set of code samples: Target XML file: ... WiX code: From: [EMAIL PROTECTED] on behalf of Simon Dahlbacka Sen

Re: [WiX-users] WiX-users Digest, Vol 27, Issue 36

2008-08-12 Thread Evans, Jim
The workaround mentioned in the bug you supplied the link to works around my problem nicely. Thanks for the heads-up. From: Meyer, Shawn [mailto:[EMAIL PROTECTED] Sent: Tue 8/12/2008 12:21 PM To: wix-users@lists.sourceforge.net Cc: Evans, Jim Subject: RE: WiX-use

[WiX-users] Same files but don't know parent directory until install time

2008-08-12 Thread Gus Perez
I'm currently authoring the installer to our product which is an add-on to another product. This means I have to drop down files in a location I determine at install time via registry searches. The tricky part is that there are different flavors of the product I'm an add-on for and the various f

Re: [WiX-users] Conditional install of feature

2008-08-12 Thread Wilson, Phil
That sounds a bit odd if I understand correctly. There's already an installed product and you're installing on top of it, but it's apparently not an upgrade. Don't you end up with two entries in Add/Remove Programs and the possibility that uninstalling the older one will remove your files? Old

[WiX-users] PatchInformation is incomplete?

2008-08-12 Thread Tony Juricic
Even if I add comments attribute to PatchInformation element, the resulting MSP Patch Summary Information Comments editbox is empty when viewed in Orca. It is also unclear if and how can one set up Title, Author and Subject parts of Summary Information via WiX.

Re: [WiX-users] WiX-users Digest, Vol 27, Issue 36

2008-08-12 Thread Meyer, Shawn
I saw an old bug similar to your problem here http://osdir.com/ml/windows.devel.wix.devel/2006-07/msg00017.html There is a suggested work around that may help diagnose if the xpath is parsed due to the brackets. A work around to avoid this bug is to use a property for the XPath value. So if your

[WiX-users] Create a web setup package with these two requirements

2008-08-12 Thread Michael Lin
Hi, I am new to the WiX community and I appreciate any assistance provided here. I want to create a web setup package that has these two options: 1. Full build. 2. Partial build. If user chooses full build, the setup package will first attempt to remove the previous installed product and then in

Re: [WiX-users] XmlConfig XPath problem

2008-08-12 Thread Simon Dahlbacka
In the sample xml provided, @name has the value DatabaseSettings while in your xpath you check for DatabaseConnections. Not sure about the missing separator though.. /Simon On Tue, Aug 12, 2008 at 5:35 PM, Evans, Jim <[EMAIL PROTECTED]>wrote: > I'm having a problem writing a value to an XML file

[WiX-users] Problem with SqlDatabase while upgrading

2008-08-12 Thread dschmitz
Hello, While performing a minor upgrade to my wix setup, I want to reinstall my database, all the existing content should be removed. I try to do this with these commands: But I get the following error: Error 6 Cannot set column 'Attributes' with value 128

[WiX-users] XmlConfig XPath problem

2008-08-12 Thread Evans, Jim
I'm having a problem writing a value to an XML file using XmlConfig (WiX 3.0.4401). Here is a model XML file with the structure I have: ... I need to set the server attribute of the Default element. Here is my WiX code for XmlConfig: When I try to

[WiX-users] SP1 for VS2008 / .Net 305 released

2008-08-12 Thread Ryan O'Neill
I've been waiting for this so I can embed the bootstrapper into my MSI and avoid a bloaty download. http://www.theregister.co.uk/2008/08/11/visual_studio_sp1_milestone/ - This SF.Net email is sponsored by the Moblin You

Re: [WiX-users] Conditional install of feature

2008-08-12 Thread Jeff Eldridge
Hi Phil, Neither. Because the original install was a done in a very old version of InstallShield, I'm just using elements and letting the Installer Server just do a straight copy over the existing files. ProductCode and UpgradeCode are in effect, brand new. Thanks, Jeff _