[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, because all conditions runs in LaunchConditions 
part of installation sequence.

How I can change  Level on the fly? Maybe some custom actions?
Or some hints (right way) for client - server install.

Thanks for assistance,
Anton



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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

2006-08-31 Thread vij
is easier because you don't have to modify each the dialogs that are affected, just copy the set fragment and change the
 Publish elements.>> Also on a whole nother topic, I have a dialog box where a user will > need to enter a path to an exiting application. When the user clicks > on the Next button I need it fire off a custom action (_vbscript_) using > that path they just 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 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...URL:
 http://sourceforge.net/mailarchive/forum.php?forum=wix-users/attachments/20060831/148b6fbe/attachment.html --Message: 3Date: Thu, 31 Aug 2006 08:22:46 -0700From: Bob Arnson <[EMAIL PROTECTED]>Subject: Re: [WiX-users] .MSI for x64...To: Chesong Lee <[EMAIL PROTECTED]>Cc: Robert Randall <[EMAIL PROTECTED]>,wix-users@lists.sourceforge.netMessage-ID: <[EMAIL PROTECTED]>Content-Type: text/plain; charset=ISO-8859-1; format=flowedChesong 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://boBhttp://bobs.org--Message: 4Date: Thu, 31 Aug
 2006 08:32:22 -0700From: Bob Arnson <[EMAIL PROTECTED]>Subject: Re: [WiX-users] ControlEvent, DoAction, WixUI_minimalTo: Denis Kolygin <[EMAIL PROTECTED]>Cc: wix-users@lists.sourceforge.netMessage-ID: <[EMAIL PROTECTED]>Content-Type: text/plain; charset=ISO-8859-1; format=flowedDenis 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 addbehavior to existing controls.> The idea behind is that I'm using WixUI_minimal and I would like to launch> CA after user clicks Finish button on ExitDialog. It is not possible to> schedule custom action in InstalleUISequence after ExitDialog. > I can add required ControlEvent entry in installer with ORCA after it is> built but I want candle and light to do the job.> There's already
 support for that behavior in WiX v3. Just specifyproperty values for WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT and ExitDialogshows a checkbox and sets WIXUI_EXITDIALOGOPTIONALCHECKBOX to '1' whenchecked. You can also show a text box by specifyingWIXUI_EXITDIALOGOPTIONALTEXT.-- sig://boBhttp://bobs.org--Message: 5Date: Thu, 31 Aug 2006 10:41:30 -0500From: "Joe Harbert" <[EMAIL PROTECTED]>Subject: [WiX-users] Install Different Components on Different DrivesTo: Message-ID: <[EMAIL PROTECTED]>Content-Type: text/plain; charset=US-ASCIIHi,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.Regards,Joe Harbert--Message: 6Date: Thu, 31 Aug 2006 08:41:50 -0700From: Rob Mensching <[EMAIL PROTECTED]>Subject: Re: [WiX-users] .MSI for x64...To: Robert Randall <[EMAIL PROTECTED]>,"wix-users@lists.sourceforge.net" Message-ID:<[EMAIL PROTECTED]>Content-Type: text/plain; charset="us-ascii"This topic from MSDN might be interesting as well: http://msdn.microsoft.com/library/default.asp?url="">--Message: 7Date: Thu, 31 Aug 2006 19:43:53 +0400From: "Peter G. Sakhno" <[EMAIL PROTECTED]>Subject: [WiX-users] How to create feature tree dialog withalternative features?To:
 wix-users@lists.sourceforge.netMessage-ID: <[EMAIL PROTECTED]>Content-Type: text/plain; charset=ISO-8859-1; format=flowedI 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 regards,Peter G. SakhnoC-MAP RUSSIA Ltdhttp://www.c-map.ru/--Message: 8Date: Thu, 31 Aug 2006 10:45:31 -0500From: "Darren Kulp" <[EMAIL PROTECTED]>Subject: Re: [WiX-users] .MSI for x64...To: "Rob Mensching" <[EMAIL PROTECTED]>, "Robert Randall&

[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 find a directory location through the 
registry.
 
    
    
Message="$(var.prod.name) is not installed. Please install it before trying 
again.">    
    

...
 
      
    

      
    Orca shows this in the LaunchCondition 
table:
 
The 
Condition column: "(PMXSDIR AND PMXSGUIVERDIR) OR 
REMOVE"
The 
Description column: " for Windows is not installed. Please 
install it before trying again."
And the 
RegLocator tables looks OK too. It has REG_MY_LOCATION and REG_MY_GUIVERSION in the Signature column as I would 
expect.
 
In UI mode, 
regmon shows the registry being probed in the location expected, but not in 
silent mode. 
 
Has anyone 
experienced this before where silent installs fail, but the UI mode install is 
OK?
 
--
Harvey Werner / [EMAIL PROTECTED] / 
971.327.5279
 
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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.

As MSXML 3.0 uses zero-based index, MSXML 4.0 and XML standard (so-called in 
MSDN) uses 1-based index. .NET Framework library also conforms XML standard. As 
I see the wix source dutil/xmlutil.cpp (if this is the correct one), it uses 
MSXML 3.0 deliberately. Use of 4.0 may lead other problems, though.

So, I would recommend you use a predicate like [EMAIL PROTECTED]'something2'] 
and avoid numerical index for your cases.

Wix documentation may have to clarify that XmlUtil uses MSXML 3.0 the users 
should use MSXML 3.0 specification.
 
Below show different behaviors in different versions of MSXML:

---
MSXML2.DOMDocument.3.0
---

XPath=/Configuration/companyname/vals/add/@value
 >>> value="value1"

XPath=/Configuration/companyname/vals/add[0]/@value
 >>> value="value1"

XPath=/Configuration/companyname/vals/add[1]/@value
 >>> value="valueIwanttoupdate"

XPath=/Configuration/companyname/vals/add[2]/@value
 >>> (null)

XPath=/Configuration/companyname/vals/add[position()=2]/@value
exception: Unknown method.

/Configuration/companyname/vals/add[-->position()<--=2]/@value

XPath=/Configuration/companyname/vals/[EMAIL PROTECTED]'something2']/@value
 >>> value="valueIwanttoupdate"



---
MSXML2.DOMDocument.4.0
---

XPath=/Configuration/companyname/vals/add/@value
 >>> value="value1"

XPath=/Configuration/companyname/vals/add[0]/@value
 >>> (null)

XPath=/Configuration/companyname/vals/add[1]/@value
 >>> value="value1"

XPath=/Configuration/companyname/vals/add[2]/@value
 >>> value="valueIwanttoupdate"

XPath=/Configuration/companyname/vals/add[position()=2]/@value
 >>> value="valueIwanttoupdate"

XPath=/Configuration/companyname/vals/[EMAIL PROTECTED]'something2']/@value
 >>> value="valueIwanttoupdate"

---
XML in .NET Framework
---

XPath=/Configuration/companyname/vals/add/@value
 >>> value1
XPath=/Configuration/companyname/vals/add[0]/@value
 >>> (null)
XPath=/Configuration/companyname/vals/add[1]/@value
 >>> value1
XPath=/Configuration/companyname/vals/add[2]/@value
 >>> valueIwanttoupdate
XPath=/Configuration/companyname/vals/add[position()=2]/@value
 >>> valueIwanttoupdate
XPath=/Configuration/companyname/vals/[EMAIL PROTECTED]'something2']/@value
 >>> valueIwanttoupdate



Chesong Lee

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chesong Lee
Sent: Thursday, August 31, 2006 5:22 PM
To: Scott Sam; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Using XmlFile to update an existing attribute

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, August 31, 2006 4:51 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Using XmlFile to update an existing attribute

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 value attribute of the
2nd add element in the group.  I don't want to create a new element,
because all the elements already exist along with all of their
attributes.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web servic

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: Thursday, August 31, 2006 2:22 PM
To: Scott Sam; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Using XmlFile to update an existing attribute

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, August 31, 2006 4:51 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Using XmlFile to update an existing attribute

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 value attribute of the
2nd add element in the group.  I don't want to create a new element,
because all the elements already exist along with all of their
attributes.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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, August 31, 2006 4:51 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Using XmlFile to update an existing attribute

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 value attribute of the
2nd add element in the group.  I don't want to create a new element,
because all the elements already exist along with all of their
attributes.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 UI).
 
Hope this 
helps.
Regards,
Richard


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Brad 
DavisSent: Thursday, August 31, 2006 16:55To: Rafuse 
RobertCc: wix-users@lists.sourceforge.netSubject: Re: 
[WiX-users] Install Different Components on Different 
Drives
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: (youwill have to fill in the 
  trees) and some custom actions to set the C_ROOTand E_ROOT properties 
  appropriately: 
   
  TODO: 
  Define C: directory tree 
  hereTODO: 
  Define E: directory tree here 
   
   
  Before="Assign_E_ROOT">Before="CostInitialize"> 
  Before="Assign_E_ROOT"> 
  Before="CostInitialize">_Bob 
  Rafuse  
   
  Remainder of message snipped.  

* C O N F I D E N T I A L I T Y N O T I C E *
---
The content of this e-mail is intended solely for the use of the individual or entity to whom it is addressed. If you have received this communication in error, be aware that forwarding it, copying it, or in any way disclosing its content to any other person, is strictly prohibited. Peek Traffic Corporation is neither liable for the contents, nor for the proper, complete and timely transmission of (the information contained in) this communication. If you have received this communication in error, please notify the author by replying to this e-mail immediately and delete the material from any computer.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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: (youwill have to fill in the trees) and some custom actions to set the C_ROOTand E_ROOT properties appropriately:

TODO: Define C: directory tree here
TODO: Define E: directory tree here


Before="Assign_E_ROOT">Before="CostInitialize">
Before="Assign_E_ROOT">
Before="CostInitialize">_Bob Rafuse
> -Original Message-> From: [EMAIL PROTECTED]> [mailto:
[EMAIL PROTECTED]] On Behalf Of> Joe Harbert> Sent: Thursday, August 31, 2006 11:42 AM> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] Install Different Components on Different Drives>>> 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.>>> Regards,
> Joe Harbert>>> --> ---> Using Tomcat but need to do more? Need to support web> services, security? Get stuff done quickly with
> pre-integrated technology to make your job easier Download> IBM WebSphere Application Server v.1.0.1 based on Apache> Geronimo> 
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___WiX-users mailing list
WiX-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wix-usersImportant Note: This email and any attachment hereto are confidential and
may contain trade secrets or may be otherwise protected from disclosure. Ifyou have received it in error you are in notice of this fact. Please notifyus immediately by reply email and then delete this email and any attachment
from your system. Please understand that you are not allowed to copy thisemail or any attachment hereto or disclose its contents to any other person.Thank you.---This communication contains confidential information. If you are not the intended recipient please return this email to the sender and delete it from your records.
Diese Nachricht enthält vertrauliche Informationen. Sollten Sie nicht der beabsichtigte Empfänger dieser E-mail sein, senden Sie bitte diese an den Absender zurück und löschen Sie die E-mail aus Ihrem System.
-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___WiX-users mailing listWiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users-- -Brad
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[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 value attribute of the
2nd add element in the group.  I don't want to create a new element,
because all the elements already exist along with all of their
attributes.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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:








TODO: Define C: directory tree here






TODO: Define E: directory tree here
 



















_
Bob Rafuse




> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Joe Harbert
> Sent: Thursday, August 31, 2006 11:42 AM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] Install Different Components on Different Drives
> 
> 
> 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.
> 
> 
> Regards,
> Joe Harbert
> 
> 
> --
> ---
> Using Tomcat but need to do more? Need to support web 
> services, security? Get stuff done quickly with 
> pre-integrated technology to make your job easier Download 
> IBM WebSphere Application Server v.1.0.1 based on Apache 
> Geronimo 
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&;
dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Important Note: This email and any attachment hereto are confidential and
may contain trade secrets or may be otherwise protected from disclosure. If
you have received it in error you are in notice of this fact. Please notify
us immediately by reply email and then delete this email and any attachment
from your system. Please understand that you are not allowed to copy this
email or any attachment hereto or disclose its contents to any other person.
Thank you.




---

This communication contains confidential information. If you are not the 
intended recipient please return this email to the sender and delete it from 
your records.

Diese Nachricht enthält vertrauliche Informationen. Sollten Sie nicht der 
beabsichtigte Empfänger dieser E-mail sein, senden Sie bitte diese an den 
Absender zurück und löschen Sie die E-mail aus Ihrem System.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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
Cc: Robert Randall; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] .MSI for x64...

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 but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 
everything. So, I need a way to spilt up the components. 

Here is the source of my wxs file:

 









   






































Thanks for Assistence,
Joe Harbert

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[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 installer, and
check for anything else it might require.  Then I need to Set an External UI
so that I can use custom skin for my dialogs.  So my question is how do I do
this?  I don't know how to create a bootstrapper for my Wix project and I
would really like some help with understanding SetExternalUI and how it will
work for me if anyone knows of a tutorial or link to get some good help on
this it would be appriciated.
-- 
View this message in context: 
http://www.nabble.com/Bootstrapping-and-External-UI-tf2198427.html#a6085174
Sent from the wix-users forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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-map.ru/

Bob Arnson wrote:
> 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 make 
>> sort of CA?
>>   
> The MSI feature-tree control doesn't support exclusivity (among other 
> things). You don't need a CA; just use feature conditions to set each 
> feature's installation level to 0 to keep it from installing.
> 

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 make 
> sort of CA?
>   
The MSI feature-tree control doesn't support exclusivity (among other 
things). You don't need a CA; just use feature conditions to set each 
feature's installation level to 0 to keep it from installing.

-- 
sig://boB
http://bobs.org


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darren Kulp
Sent: Thursday, August 31, 2006 8:46 AM
To: Rob Mensching; Robert Randall; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] .MSI for x64...

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 Mensching
Sent: Thursday 31 August 2006 10:42
To: Robert Randall; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] .MSI for x64...

This topic from MSDN might be interesting as well:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/set
up/windows_installer_start_page.asp?frame=true


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier 
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier 
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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
Mensching
Sent: Thursday 31 August 2006 10:42
To: Robert Randall; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] .MSI for x64...

This topic from MSDN might be interesting as well:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/set
up/windows_installer_start_page.asp?frame=true


-
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[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 regards,
Peter G. Sakhno
C-MAP RUSSIA Ltd
http://www.c-map.ru/

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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


Regards,
Joe Harbert


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 would like to launch
> CA after user clicks Finish button on ExitDialog. It is not possible to
> schedule custom action in InstalleUISequence after ExitDialog. 
> I can add required ControlEvent entry in installer with ORCA after it is
> built but I want candle and light to do the job.
>   
There's already support for that behavior in WiX v3. Just specify
property values for WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT and ExitDialog
shows a checkbox and sets WIXUI_EXITDIALOGOPTIONALCHECKBOX to '1' when
checked. You can also show a text box by specifying
WIXUI_EXITDIALOGOPTIONALTEXT.

-- 
sig://boB
http://bobs.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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
the
feature that I need for that dialog is not selected then I want the
WixUI_CustomizeDlg_Next
to be set to another dialog.  So in essence I’m wanting to change a
Property based on  a condition.  Is that possible?  I don’t
really want to change my CustomizeDlg.wxs file because I use that on
other
installation packages.  Is that the only way I can do it? 
  
  

In WiX v2, you can use custom actions or control events to set the
value of the properties WixUI uses for the Back and Next button
navigation. In WiX v3, you can publish "floating" control events
instead, which is easier because you don't have to modify each the
dialogs that are affected, just copy the set fragment and change the
Publish elements.

  
   
  Also on a
whole nother topic,  I have
a dialog box where a user will need to enter a path to an exiting
application.  When the user clicks on the Next button I need it fire
off a
custom action (_vbscript_) using that path they just 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 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://boB
http://bobs.org


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 Pavlik
Sent: Thursday, August 31, 2006 12:18 AM
To: vij
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Adding multiple entries in add/remove programs

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 
> entries (one for each component) in add/remove programs list?
> Any help or pointer will be highly appreciated.
>  
> thanks®ards
> Vij
> 
> --
> -- How low will we go? Check out Yahoo! Messenger's low PC-to-Phone 
> call rates.
>  com/evt=39663/*http://voice.yahoo.com>
> 
> 
>  
>  com/evt=39663/*http://voice.yahoo.com>
> --
> --
> 
> --
> --- Using Tomcat but need to do more? Need to support web services, 
> security?
> Get stuff done quickly with pre-integrated technology to make your job 
> easier Download IBM WebSphere Application Server v.1.0.1 based on 
> Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=1216
> 42
> 
> __ NOD32 1.1731 (20060830) Information __
> 
> This message was checked by NOD32 antivirus system.
> http://www.eset.com
> 
>  
>  com/evt=39663/*http://voice.yahoo.com>
> 
> 
>  
>  com/evt=39663/*http://voice.yahoo.com>
> --
> --
> 
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> __ NOD32 1.1731 (20060830) Information __
> 
> This message was checked by NOD32 antivirus system.
> http://www.eset.com
> 
>  
>  com/evt=39663/*http://voice.yahoo.com>

--
Stefan Pavlik | [EMAIL PROTECTED]
Whitestein Technologies | www.whitestein.com Panenska 28 | SK-81103
Bratislava | Slovak Republic Tel +421(2)5930-0735 | Fax +421(2)5443-5512

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[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 chronological order:

FIRST (ERROR):

Product: FOO.NET Development -- The installer has encountered an
unexpected error installing this package. This may indicate a problem
with this package. The error code is 2753. The arguments are: file58,
,

SECOND (WARNING):
-
Detection of product '{CC30DEFD-A923-419C-A20C-77C9621BF6FD}', feature
'DefaultFeature', component '{FE33C480-C05B-40A0-BF9C-A196CDE97544}'
failed.  The resource 'C:\Program Files\My Application\FOO.NET
Development\FOO.NET.Development.exe' does not exist.

THIRD (WARNING):
-
Detection of product '{CC30DEFD-A923-419C-A20C-77C9621BF6FD}', feature
'DefaultFeature' failed during request for component
'{FE33C480-C05B-40A0-BF9C-A196CDE97544}'


The WiX XML is the following:

DECLARATION:
---

   
  

  
   


UI:

   



  Launch 

  


BACKEND:


   

  
  NOT Installed


  



Any help would be greatly appreciated.  And like I said, it's like 1/5
odds that we get this error.  I simply click "OK" on the error, and
launch the program manually, at which point, the MSI GUI with only the
progress bar comes, does something, and then program launches and
everyone lives happily ever after...until then next autoupdated is
detected.

Roy

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[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 an 
elevated cmd prompt this fails with user does not have sufficent privileges 
to start the service. This worked on the previous beta.

What do I need to so to make sure that the installer runs as admin and 
installs the service? Also how do I ensure that the installer runs with 
elevated privileges? Do I need to use a bootstrapper with manifest?

Thanks,

Mike



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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
> entries (one for each component) in add/remove programs list?
> Any help or pointer will be highly appreciated.
>  
> thanks®ards
> Vij
> 
> 
> How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call
> rates.
> 
> 
> 
>  
> 
> 
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> 
> __ NOD32 1.1731 (20060830) Information __
> 
> This message was checked by NOD32 antivirus system.
> http://www.eset.com
> 
>  
> 
> 
> 
>  
> 
> 
> 
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> __ NOD32 1.1731 (20060830) Information __
> 
> This message was checked by NOD32 antivirus system.
> http://www.eset.com
> 
>  
> 

-- 
Stefan Pavlik | [EMAIL PROTECTED]
Whitestein Technologies | www.whitestein.com
Panenska 28 | SK-81103 Bratislava | Slovak Republic
Tel +421(2)5930-0735 | Fax +421(2)5443-5512

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 use.

 

Derek

 





From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kamil
Krawczyk
Sent: Thursday, August 31, 2006 12:03 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] 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 pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[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 pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users