Re: [WiX-users] dynamic library registration

2006-09-01 Thread Standa Kunc
Thank you. This works. Just one more question, I use my own GUIDs in
MergeRef section:


   
   
   
   


file55 is picclp32.msm and file 56 is comdlg32.msm

Should I use dark utility on these libraries and then use GUIDs from the output?

S. Kunc

On 14/08/06, Chesong Lee <[EMAIL PROTECTED]> wrote:
>
> Take a look at in C:\Program Files\Common Files\Merge Modules if you have
> Visual Studio installed in your system. Otherwise, you may download from
>
> http://www.installshield.com/downloads/modules.asp?prod=cx&lan=english&xmlUse=y
>
> Regards,
>
> Chesong Lee
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Standa Kunc
> Sent: Sunday, August 13, 2006 6:57 PM
> To: Frederik Carlier
> Cc: WiX-users
> Subject: Re: [WiX-users] dynamic library registration
>
> Could someone help me to get these msm files? What should I download?
> Please provide some link.
>
> S. Kunc
>
> On 13/08/06, Frederik Carlier <[EMAIL PROTECTED]> wrote:
> > > "OTOH in this case just use the proper comdlg32 msm which will do
> > > everything
> > > properly and not break stuff (or at least if it does you can
> > legitimately
> > > blame microsoft..)."
> > >
> > > Now I am completely lost. What should I do in order to "just use the
> > > proper comdlg32 msm"?
> > >
> > > I know that msm files are merge modules but I do not need to use them.
> > > I am the only one who is creating this new installer.
> >
> > Yes, but you're not the only one creating an installer that uses
> > comdlg32.
> > According to the quoted text, Microsoft created a Merge Module that can
> > be used to deploy comdlg32. You can use that in your setup.
> >
> > Frederik.
> >
>
> -
> 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-09-01 Thread Scott Sam
You do have to escape the [
This worked.
/configuration/Xenysys/Vals/[EMAIL PROTECTED]'value2'[\]]

Thank you very much for your help.

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


/configuration/Xenysys/Vals/[EMAIL PROTECTED]'value2']
And
/configuration/Xenysys/Vals/add

Update the value in value1.  I don't understand why the first one
doesn't update value2 or give an error.  Does it just ignore everything
in brackets if they aren't escaped?


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


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://

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

2006-09-01 Thread Scott Sam

/configuration/Xenysys/Vals/[EMAIL PROTECTED]'value2']
And
/configuration/Xenysys/Vals/add

Update the value in value1.  I don't understand why the first one
doesn't update value2 or give an error.  Does it just ignore everything
in brackets if they aren't escaped?


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


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 w

Re: [WiX-users] Launching program after installation completes gives occassional error. (Roy Abou Assaly)

2006-09-01 Thread Roy Abou Assaly
gt; > >
> > > 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:
> > > ---
> > >
> > > > > Guid="FE33C480-C05B-40A0-BF9C-A196CDE97544" DiskId="1">
> > >> > LongName="FOO.NET.Development.exe" src="FOO.NET.Development.exe"
> > > KeyPath="yes">
> > >  > > Directory="ProgramMenuDir" Name=" FOO.NET" LongName="FOO.NET
> > > Development" Target="DefaultFeature" Show="normal"
> > > WorkingDirectory="INSTALLDIR" />
> > >   
> > >
> > >
> > >
> > > UI:
> > > 
> > >
> > >  > > Width="10" Height="10" Property="LAUNCHPRODUCT" CheckBoxValue="1">
> > > 
> > >  > > Width="220" Height="20" Transparent="yes" NoPrefix="yes">
> > >   Launch 
> > > 
> > >   
> > > 
> > >
> > > BACKEND:
> > > 
> > >
> > > > > Return="asyncNoWait" />
> > > 
> > >   
> > >   NOT Installed
> > > 
> > > 
> > >> >
> > Before="InstallValidate">
> >
> > > 
> > >
> > >
> > > 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
> >
> > So nobody sees anything wrong there?  How about the BACKEND portion.
> > Does the squence contain anything fishy?  Again, this is an
> > intermittent bug.
> >
> > 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
> >
> -- next part --
> An HTML attachment was scrubbed...
> URL: 
> http://sourceforge.net/mailarchive/forum.php?forum=wix-users/attachments/20060901/15d8775f/attachment.html
>
> --
>
> -
> 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
>
>
> End of WiX-users Digest, Vol 4, Issue 3
> ***
>


-- 
+ 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


Re: [WiX-users] Launching program after installation completesgives occassional error. (Roy Abou Assaly)

2006-09-01 Thread Wilson, Phil



I think you're on the right track there. 
The log will say if the file is really being installed. I'm 
wondering if there's an existing version of the file out there. The message 
might be something to do with the file not being installed because it's already 
there with the same version (or higher?), so the only way it can run the actual 
exe in your package is to force it to be installed (causing the repair entries 
in the event log). 
Phil Wilson 

From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Dana 
GutrideSent: Friday, September 01, 2006 8:31 AMTo: 
wix-users@lists.sourceforge.netSubject: Re: [WiX-users] Launching 
program after installation completesgives occassional error. (Roy Abou 
Assaly)
Roy:I'm not sure what is going on here, but if the MSI dialog 
is reappearing after the product is installed, it seems that things are not 
installing the way you expect.  Windows Installer might even be restarting 
to *fix* that component because the file is not on the disk.  The section 
of the log file that might be a little more valuable is under InstallValidate 
(make sure the component and feature are actually scheduled for installation, 
not install on demand or something else), also in the FileCopy area, is the file 
being copied without any problems?  In my experience if the UI has a 
problem, it will fail every time, it won't work intermittently.  
Dana
On 9/1/06, Roy Abou 
Assaly < [EMAIL PROTECTED]> 
wrote:
> 
  Date: Thu, 31 Aug 2006 10:32:18 -0400> From: "Roy Abou Assaly" <[EMAIL PROTECTED] 
  >> Subject: [WiX-users] Launching program after installation 
  completen > 
  giveoccassional error.>> 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:> --- 
  >>> 
  Guid="FE33C480-C05B-40A0-BF9C-A196CDE97544" 
  DiskId="1">>   
  > 
  LongName="FOO.NET.Development.exe" src=""> 
  KeyPath="yes">> 
  > Directory="ProgramMenuDir" Name=" FOO.NET" LongName=" FOO.NET> Development" Target="DefaultFeature" 
  Show="normal"> WorkingDirectory="INSTALLDIR" /> 
  >   
  >>>> 
  UI:> 
  >> 
  > Width="10" 
  Height="10" Property="LAUNCHPRODUCT" 
  CheckBoxValue="1">> 
  > 
  > Width="220" 
  Height="20" Transparent="yes" 
  NoPrefix="yes">>   
  Launch > 
   >   
  > >> 
  BACKEND:> 
  >>> Return="asyncNoWait" 
  />> 
  >   >   NOT Installed 
  > 
  > 
  >   
  > 
  Before="InstallValidate"> 
  > 
  >>> 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.>> RoySo nobody sees anything wrong 
  there?  How about the BACKEND portion.Does the squence contain 
  anything fishy?  Again, this is anintermittent 
  bug.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 easierDownload 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 
  listWiX-users@lists.sourceforge.nethttps://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 technolog

Re: [WiX-users] Passing multiple vars to candle

2006-09-01 Thread Rob Mensching
Title: Passing multiple vars to candle








You can always use a response file.  "candle @response.txt"

 

 





From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lerudjordet,
Morten Minge
Sent: Friday, September 01, 2006 01:54
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Passing multiple vars to candle





 

Hi, I was
wondering if it is possible to pass more than one variable to candle via the d
switch. 
I know one
can use the -d multiple times, but what I'm looking fore is more like passing a
file with the vars defined in it. 

I'm
working towards a low maintenance solution, where developers only have to edit
one or two files. 

Regard 
Morten 






-
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] Launching program after installation completes gives occassional error. (Roy Abou Assaly)

2006-09-01 Thread Dana Gutride
Roy:I'm not sure what is going on here, but if the MSI dialog is reappearing after the product is installed, it seems that things are not installing the way you expect.  Windows Installer might even be restarting to *fix* that component because the file is not on the disk.  The section of the log file that might be a little more valuable is 
under InstallValidate (make sure the component and feature are actually scheduled for installation, not install on demand or something else), also in the FileCopy area, is the file being copied without any problems?  In my experience if the UI has a problem, it will fail every time, it won't work intermittently.  
DanaOn 9/1/06, Roy Abou Assaly <
[EMAIL PROTECTED]> wrote:
> Date: Thu, 31 Aug 2006 10:32:18 -0400> From: "Roy Abou Assaly" <[EMAIL PROTECTED]
>> Subject: [WiX-users] Launching program after installation completen
> giveoccassional error.>> 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:> ---
>>> Guid="FE33C480-C05B-40A0-BF9C-A196CDE97544" DiskId="1">>   > LongName="FOO.NET.Development.exe" src="">> KeyPath="yes">> > Directory="ProgramMenuDir" Name="
FOO.NET" LongName="
FOO.NET> Development" Target="DefaultFeature" Show="normal"> WorkingDirectory="INSTALLDIR" />
>   >>>> UI:> >> > Width="10" Height="10" Property="LAUNCHPRODUCT" CheckBoxValue="1">> > > Width="220" Height="20" Transparent="yes" NoPrefix="yes">>   Launch > 
>   > >> BACKEND:> >>

> Return="asyncNoWait" />> >   >   
> > >   > Before="InstallValidate">
> >>> 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.>> RoySo nobody sees anything wrong there?  How about the BACKEND portion.Does the squence contain anything fishy?  Again, this is anintermittent bug.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 easierDownload 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 listWiX-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] Launching program after installation completes gives occassional error. (Roy Abou Assaly)

2006-09-01 Thread Roy Abou Assaly
> Date: Thu, 31 Aug 2006 10:32:18 -0400
> From: "Roy Abou Assaly" <[EMAIL PROTECTED]>
> Subject: [WiX-users] Launching program after installation completen
> giveoccassional error.
>
> 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:
> ---
>
> Guid="FE33C480-C05B-40A0-BF9C-A196CDE97544" DiskId="1">
>LongName="FOO.NET.Development.exe" src="FOO.NET.Development.exe"
> KeyPath="yes">
>  Directory="ProgramMenuDir" Name="FOO.NET" LongName="FOO.NET
> Development" Target="DefaultFeature" Show="normal"
> WorkingDirectory="INSTALLDIR" />
>   
>
>
>
> UI:
> 
>
>  Width="10" Height="10" Property="LAUNCHPRODUCT" CheckBoxValue="1">
> 
>  Width="220" Height="20" Transparent="yes" NoPrefix="yes">
>   Launch 
> 
>   
> 
>
> BACKEND:
> 
>
> Return="asyncNoWait" />
> 
>   
>   NOT Installed
> 
> 
>Before="InstallValidate">
> 
>
>
> 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

So nobody sees anything wrong there?  How about the BACKEND portion.
Does the squence contain anything fishy?  Again, this is an
intermittent bug.

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


Re: [WiX-users] Problem with silent installs

2006-09-01 Thread Harvey Werner



Thanks, Richard. My install is working 
now!
 
The InstallExecuteSequence was incorrect and had LaunchConditions 
before AppSearch. When I reversed the order the silent install works 
fine.
 
-Harvey

  
  
  From: Foster, Richard - PAL 
  [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 
  5:41 AMTo: Harvey Werner; 
  wix-users@lists.sourceforge.netSubject: Re: [WiX-users] Problem 
  with silent installs
  
  Harvey,
   
  I'm not really familiar with silent installs, but based 
  on comments others have made previously, I wonder if it's a sequencing 
  issue.
   
  I believe that the registry scanning would occur during 
  the "AppSearch" process. This is typically sequenced after the 
  "LaunchConditions", but according to the WiX documentation may be sequenced 
  before.
   
  If AppSearch is not present in your 
  InstallExecuteSequence before the LaunchConditions, then this may be the 
  source of your problem. (It doesn't matter if AppSearch is in both 
  InstallExecuteSequence and InstallUISequence, it will only be triggered once - 
  again, according to the documentation.)
   
  Regards,
  Richard
  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Harvey 
  WernerSent: Thursday, August 31, 2006 19:47To: 
  wix-users@lists.sourceforge.netSubject: [WiX-users] Problem with 
  silent installs
  
  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
   
  
  
  
  * 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] Adding multiple entries in add/remove programs

2006-09-01 Thread Phil Wilson
As Stefan pointed out, you need two separate MSI packages to get two entries
in ARP. My point was that one way to offer functionality that can be added
or removed  is to have a package with two features and a single entry in
ARP, and then users can use the modify in that single ARP entry to remove
(or add) features.   Using features like this is generally safer if the two
components you're referring to are connected in some way and perhaps sharing
files. 

Phil Wilson 



From: vij [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 31, 2006 9:37 PM
To: [EMAIL PROTECTED]
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Adding multiple entries in add/remove programs


Hi Phil Wilson,
 
I modified my code as you suggested, but still I don't see two entries in
add/remove program list. Below given is my code snippet.
 

 


   

 
can you please give me small example to add multiple entries in add/remove
program list!!
 
thanks in advance
Vij



 



Message: 1
Date: Thu, 31 Aug 2006 08:15:35 -0700
From: "Phil Wilson" 
Subject: Re: [WiX-users] Adding multiple entries in add/remove
programs
To: 
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="us-ascii"

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.
> 
> thanksRards
> 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
_

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

2006-09-01 Thread Foster, Richard - PAL



Thanks for the pointer Jonas, I missed that thread (or had 
forgotten about it).
 
Regards,
Richard


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Jonas 
Jonsson L (AL/EAB)Sent: Friday, September 01, 2006 
03:56To: WiX ListanSubject: Re: [WiX-users] Install 
Different Components on Different Drives

Search 
for the thread "Question on Directory structure" (2005-12-07).  There are 
ways of doing this without custom actions 
 
/Jona

* 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] Problem with silent installs

2006-09-01 Thread Foster, Richard - PAL



Harvey,
 
I'm not really familiar with silent installs, but based on 
comments others have made previously, I wonder if it's a sequencing 
issue.
 
I believe that the registry scanning would occur during the 
"AppSearch" process. This is typically sequenced after the "LaunchConditions", 
but according to the WiX documentation may be sequenced 
before.
 
If AppSearch is not present in your InstallExecuteSequence 
before the LaunchConditions, then this may be the source of your problem. (It 
doesn't matter if AppSearch is in both InstallExecuteSequence and 
InstallUISequence, it will only be triggered once - again, according to the 
documentation.)
 
Regards,
Richard


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Harvey 
WernerSent: Thursday, August 31, 2006 19:47To: 
wix-users@lists.sourceforge.netSubject: [WiX-users] Problem with 
silent installs

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
 

* 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] [Bug #1498645 ] Configure IIS error on 2.0.4126(Verbose Output)

2006-09-01 Thread david adams
Matthew:

Did you have an IP address attribute originally?  In my case, all of our 
elements have an IP address attribute.  We had to do this because we are 
creating multiple web site / web application entries in IIS on our servers.  
Instead of using Virtual Directories, we add additional IP addresses to the 
NIC card and associate each web site / web application to its own IP 
address.

I believe that in my case, the error actually was the buffer overflow 
created when you have multiple web sites on a machine.

David Adams
MSN MessengerID: [EMAIL PROTECTED]





>From: "Matthew Janulewicz" <[EMAIL PROTECTED]>
>To: 
>Subject: Re: [WiX-users] [Bug #1498645 ] Configure IIS error on 
>2.0.4126(Verbose Output)
>Date: Thu, 31 Aug 2006 19:05:01 -0700
>MIME-Version: 1.0
>Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by 
>bay0-mc2-f12.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Thu, 
>31 Aug 2006 19:05:48 -0700
>Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93])by 
>sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 7779EE9CC; Thu, 31 Aug 
>2006 19:05:48 -0700 (PDT)
>Received: from sc8-sf-mx1-b.sourceforge.net 
>([10.3.1.91]helo=mail.sourceforge.net)by sc8-sf-list1-new.sourceforge.net 
>with esmtp (Exim 4.43)id 1GIyOZ-0003yG-Czfor 
>wix-users@lists.sourceforge.net; Thu, 31 Aug 2006 19:04:35 -0700
>Received: from mx1.greendotcorp.com ([63.161.119.204])by 
>mail.sourceforge.net with esmtp (Exim 4.44) id 1GIyOY-0008Q4-EZfor 
>wix-users@lists.sourceforge.net; Thu, 31 Aug 2006 19:04:35 -0700
>X-Message-Info: LsUYwwHHNt3YzzX+vBWlbohRums6F3N3MyGAZd+ODGc=
>X-MIMEOLE: Produced By Microsoft Exchange V6.0.6249.0
>Content-class: urn:content-classes:message
>X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Re: [WiX-users] [Bug 
>#1498645 ] Configure IIS error on 2.0.4126(Verbose Output)
>Thread-Index: AcbNQvT/nKj7iDPkTAeeoFJ6utbpdwAJzfrg
>X-BeenThere: wix-users@lists.sourceforge.net
>X-Mailman-Version: 2.1.8
>Precedence: list
>List-Id: "General discussion for Windows Installer XML 
>toolset."
>List-Unsubscribe: 
>,PROTECTED]>
>List-Archive: 
>
>List-Post: 
>List-Help: 
>List-Subscribe: 
>,PROTECTED]>
>Errors-To: [EMAIL PROTECTED]
>Return-Path: [EMAIL PROTECTED]
>X-OriginalArrivalTime: 01 Sep 2006 02:05:49.0058 (UTC) 
>FILETIME=[24E15620:01C6CD6B]
>
>I figured out what my problem was and want to post it just so others
>searching for this might find it. The real problem was the second error:
>"Failed to find web root".
>
>
>
>I found by scouring the net for general installer problems like this
>that my installer was likely failing to find the root of the designated,
>pre-existing website because it's definition was too ambiguous. In my
>case, my website definition was lacking an 'ip' address entry. Even
>though I didn't want to put a specific IP address in there (we have many
>environments where this .msi will have to be installed) I entered a '*'
>in the wix script as a placeholder for the IP entry. Then the installer
>worked fine.
>
>
>
>
>
>-Matt
>
>
>
>   _
>
>From: Matthew Janulewicz
>Sent: Thursday, August 31, 2006 2:19 PM
>To: 'wix-users@lists.sourceforge.net'
>Subject: Re: [WiX-users] [Bug #1498645 ] Configure IIS error on 2.0.4126
>(Verbose Output)
>
>
>
>I'm having this exact same problem. I updated to the latest weekly build
>of Wix (2.0.4423.0) and it still does the same thing during the install.
>
>
>
>The machine it's installing to is Windows Server 2003 with IIS 6.0. We
>have a total of 15 websites configured in IIS. The installer I'm running
>is installing a virtual directory to a website that already exists. That
>website component is marked 'ConfigureIfExists=no'.
>
>
>
>Just for fun, I tried to install a new website and the same thing
>happened. I've pasted the verbose log up to the part where it errors
>out.
>
>
>
>Thanks!
>
>
>
>
>
><...start...>
>
>
>
>=== Logging started: 8/31/2006  13:54:02 ===
>
>Action start 13:54:02: INSTALL.
>
>Action start 13:54:02: ValidateProductID.
>
>Action ended 13:54:02: ValidateProductID. Return value 1.
>
>Action start 13:54:02: CostInitialize.
>
>Action ended 13:54:02: CostInitialize. Return value 1.
>
>Action start 13:54:02: FileCost.
>
>Action ended 13:54:02: FileCost. Return value 1.
>
>Action start 13:54:02: CostFinalize.
>
>Action ended 13:54:02: CostFinalize. Return value 1.
>
>Action start 13:54:02: InstallValidate.
>
>Action ended 13:54:02: InstallValidate. Return value 1.
>
>Action start 13:54:02: InstallInitialize.
>
>Action ended 13:54:02: InstallInitialize. Return value 1.
>
>Action start 13:54:02: ProcessComponents.
>
>Action ended 13:54:02: ProcessComponents. Return value 1.
>
>Action start 13:54:02: UnpublishFeatures.
>
>Action ende

[WiX-users] Passing multiple vars to candle

2006-09-01 Thread Lerudjordet, Morten Minge
Title: Passing multiple vars to candle






Hi, I was wondering if it is possible to pass more than one variable to candle via the d switch. 

I know one can use the -d multiple times, but what I'm looking fore is more like passing a file with the vars defined in it. 

I'm working towards a low maintenance solution, where developers only have to edit one or two files. 


Regard 

Morten 



-
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-09-01 Thread Jonas Jonsson L (AL/EAB)



Search 
for the thread "Question on Directory structure" (2005-12-07).  There are 
ways of doing this without custom actions 
 
/Jonas

  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Foster, 
  Richard - PALSent: den 31 augusti 2006 23:00To: Brad 
  DavisCc: wix-users@lists.sourceforge.netSubject: Re: 
  [WiX-users] Install Different Components on Different 
  Drives
  
  
  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