[WiX-users] Conditional Install, change feature level

2006-08-31 Thread Filippov Anton
Hi. I'm new to WiX and I have some question. I have a client-server app, and my install sequence is ---... allow users to choose "Server Install", "Client Install" or "Custom Install" On I've placed buttons which set InstallMode property. This way is not right, be

Re: [WiX-users] Adding multiple entries in add/remove programs

2006-08-31 Thread vij
entered. I tried using the InstallUISequence to > fire the custom action After the Dialog, but that didn't seem to > work. Any suggestions? Thanks for your time Bob.>It depends on what the custom action does. Machine changes shouldn't be made from the UI; instead, the UI should gat

[WiX-users] Problem with silent installs

2006-08-31 Thread Harvey Werner
I am having a problem where an MSI built with WiX is not installing in silent mode using "msiexec /qn /i update.msi", but it installs just fine in UI mode.   I am using the WiX toolset version 3.0.1319.0 and building an x86 version of my MSI.   Here is the pertinent code. It is supposed to

Re: [WiX-users] Using XmlFile to update an existing attribute

2006-08-31 Thread Chesong Lee
I have to correct my statement. [] also can be an indexer. But it should be used very carefully. It is much cleaner to see [] a predicate and [position()=2] for example is better choice for such indexed location. However, MSXML 3.0 does not support position() function as will be shown below. A

Re: [WiX-users] Using XmlFile to update an existing attribute

2006-08-31 Thread Derek Cicerone
You need to be careful with braces because it's a formatted value so they need to be escaped like this: [\[] for left brace and [\]] for right brace (I think that's the syntax). Derek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chesong Lee Sent: Thurs

Re: [WiX-users] Using XmlFile to update an existing attribute

2006-08-31 Thread Chesong Lee
Isn't it possible to use the xpath like this? [] in XPath is not a numerical index but node test predicate. /Configuration/companyname/vals/[EMAIL PROTECTED]'something2']/@value -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sam Sent: Thursday, Au

Re: [WiX-users] Install Different Components on Different Drives

2006-08-31 Thread Foster, Richard - PAL
Brad / Joe,   You still need the custom actions, otherwise the destination folders won't be configured and everything will fall into a default location. That's why the custom action is triggered in both the InstallUISequence (for when run with a UI), and in the InstallExecuteSequence (no U

Re: [WiX-users] Install Different Components on Different Drives

2006-08-31 Thread Brad Davis
I'm working with Joe on this. What if Joe doesn't want any UI? Are the CAs necessary? Thanks.On 8/31/06, Rafuse Robert < [EMAIL PROTECTED]> wrote:Joe,One of the few mailing list questions I can answer!  If you're C: and E: folders are fixed, the snippet below sets up folder trees on C: and E: (youw

[WiX-users] Using XmlFile to update an existing attribute

2006-08-31 Thread Scott Sam
I'm trying to set the value of an attribute to the machine name. this is a snippet of the xml file. . . . When I use the //Configuration/Companyname[1]/vals[1]/add[2] for the ElementPath it updates value1 no matter what add I reference. Any ideas why this happens? How can I update the

Re: [WiX-users] Install Different Components on Different Drives

2006-08-31 Thread Rafuse Robert
Joe, One of the few mailing list questions I can answer! If you're C: and E: folders are fixed, the snippet below sets up folder trees on C: and E: (you will have to fill in the trees) and some custom actions to set the C_ROOT and E_ROOT properties appropriately:

Re: [WiX-users] .MSI for x64...

2006-08-31 Thread Chesong Lee
The intention is to prevent installation of the package in both x64 and IA64 platforms. 32-bit device drivers cannot be installed on any other platforms. Chesong Lee -Original Message- From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Thursday, August 31, 2006 11:23 AM To: Chesong Lee C

Re: [WiX-users] Installing Different Components on Different Drives

2006-08-31 Thread Joe Harbert
I should probably give a little more background. I have a file (w3wp.exe.config) that has to go on the C drive of the server. All the other pieces go to the E drive. The way that I understand it, using a command file won't work because it will set the installation to use the C or E file for eve

[WiX-users] Bootstrapping and External UI

2006-08-31 Thread Magus
Ok well I didn't want to have to go external for my application for any of my objectives for wix, but it seems my project requires things that are outside of its scope. From what I understand I need to create a program that checks to see if I need to update the end users machine to run my install

Re: [WiX-users] How to create feature tree dialog with alternative features?

2006-08-31 Thread Peter G. Sakhno
Actually the first I tried to use was feature conditions but that did not work. See my previous post "Conditional fature installation does not work..." Do You mean that feature state can be used as a condition, something like '&F1>2'? Best regards, Peter G. Sakhno C-MAP RUSSIA Ltd http://www.c

Re: [WiX-users] How to create feature tree dialog with alternative features?

2006-08-31 Thread Bob Arnson
Peter G. Sakhno wrote: > I have two features. And only one of them should be installed. I want to > show a dialog with Feature tree that will drop installation state of one > feature when the other is selected to be installed. > Is it possible to create such behavior with WiX code or I need to ma

Re: [WiX-users] .MSI for x64...

2006-08-31 Thread Rob Mensching
Yeah, sometimes I forget that MSDN doesn't update the address bar as you click around. I was shooting for this: http://msdn.microsoft.com/library/en-us/msi/setup/windows_installer_on_64_bit_operating_systems.asp (which is the same thing Darren pointed at). -Original Message- From: [EM

Re: [WiX-users] .MSI for x64...

2006-08-31 Thread Darren Kulp
Did you mean to point to the start page? Perhaps this topic could be helpful: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/set up/windows_installer_on_64_bit_operating_systems.asp -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob

[WiX-users] How to create feature tree dialog with alternative features?

2006-08-31 Thread Peter G. Sakhno
I have two features. And only one of them should be installed. I want to show a dialog with Feature tree that will drop installation state of one feature when the other is selected to be installed. Is it possible to create such behavior with WiX code or I need to make sort of CA? -- Best regar

Re: [WiX-users] .MSI for x64...

2006-08-31 Thread Rob Mensching
This topic from MSDN might be interesting as well: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/windows_installer_start_page.asp?frame=true - Using Tomcat but need to do more? Need to support we

[WiX-users] Install Different Components on Different Drives

2006-08-31 Thread Joe Harbert
Hi, I have an installation that needs to install some components onto the machine's C drive and other components onto the machine's E drive. Is there an easy way to do this? I've searched through the mailing lists and googled but have not found a way to do this. I'm using WIX 3.0 by the way.

Re: [WiX-users] ControlEvent, DoAction, WixUI_minimal

2006-08-31 Thread Bob Arnson
Denis Kolygin wrote: > Are there any way to populate ControlEvent table without adding all that > UI/Dialog/Control/Publish into my .wxs file? > No, but in WiX v3, you can add "floating" Publish elements to add behavior to existing controls. > The idea behind is that I'm using WixUI_minimal and

Re: [WiX-users] .MSI for x64...

2006-08-31 Thread Bob Arnson
Chesong Lee wrote: > > Not VersionNT64 > You should look at the Msix64 property instead. VersionNT64 is set on all Win64 platforms, including Itanium. (Pretty rare, granted.) -- sig://boB http://bobs.org - Using Tomcat

Re: [WiX-users] How to not dispaly a dialog box when feature is not selected

2006-08-31 Thread Bob Arnson
Please keep wix-users on the thread so everyone can participate. Brad Edwards wrote: Thanks for the reply…it works great…however…In my CustomizeDlg.wxs which is part of the wixlib I have the next button value set to WixUI_CustomizeDlg_Next which is set to a specific dialog.  If

Re: [WiX-users] Adding multiple entries in add/remove programs

2006-08-31 Thread Phil Wilson
It may be that features are what you could use. If each component is in its own feature then users can go to the single entry in Add/Remove and choose to add or remove each feature. Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Pavl

[WiX-users] Launching program after installation completen give occassional error.

2006-08-31 Thread Roy Abou Assaly
I don't know if this is my fault or not. At the end of tte installation, we have a checkbox which is by default "on", such that when the user clicks 'Finish', the program that he just installed, launches. I *sometimes* get the following error in my Application eventlog in the following chronolog

[WiX-users] Install Serivce on Vista

2006-08-31 Thread Michael Carlisle
Hi, I'm building an installer to run on Vista using Wix. I've set the InstallPrivileges property of the package to elevated, and the InstallerVersion to 400. As part of the installation I want to install a serivce using the ServiceInstall node. On the latest build of Vista running the msi from

Re: [WiX-users] Adding multiple entries in add/remove programs

2006-08-31 Thread Stefan Pavlik
Hi,... It is not possible to have one entry in ARP (add remove programs) for each component. The only way to do this is to create two MSI packages. regards Stefan vij wrote: > Hi, > I am new to WiX and wix user group. > > I have an msi package which installs two components. Can I have two > e

Re: [WiX-users] Ui for wix3

2006-08-31 Thread Derek Cicerone
Title: Ui for wix3 No.  Just link with: -cultures:en-us -ext WixUIExtension   To get the equivalent functionality.  In WiX 3.0, the localization strings, wixlib, and bitmaps are all self-contained in WixUIExtension.dll.  Hopefully once we teach everyone about the new model it’s easier to

[WiX-users] Ui for wix3

2006-08-31 Thread Kamil Krawczyk
Title: Ui for wix3 Hello Does wix3 have a basic ui lib file, like wixui.lib was for wix2?? Thanks for help - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with p