[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

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 its easier to

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

[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

[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

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

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 I

[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] .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

[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

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 'F12'? Best regards, Peter G. Sakhno C-MAP RUSSIA Ltd

[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

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

[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. Configuration . . . companyname vals add name=something value=value1 / add name=something2 value=valueIwanttoupdate / /vals /companyname /Configuration When I use the

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

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:

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.

[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] Adding multiple entries in add/remove programs

2006-08-31 Thread vij
I; instead, the UI should gather the needed data and the CA scheduled appropriate in the execute sequence.What does your CA do? Maybe there's another way of doing it.-- sig://boBhttp://bobs.org-- next part --An HTML attachment was scrubbed...UR

[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 welcome-license-setup type-... setup type allow users to choose Server Install, Client Install or Custom Install Feature Id='Server' Level='1' ... Feature Id='Server1' Level='1' ...