Re: [WiX-users] setupbld

2007-10-05 Thread Frédéric Viollet

Frédéric Viollet a écrit :

Bob Arnson a écrit :
  

Frédéric Viollet wrote:

When I perform a minor upgrade of my product using the generated 
executable file, not all of the files are upgraded. Only the files 
that have changed are updated.
I thought that even on a minor upgrade, all the files for the 
installed components would be upgraded (even if they haven't changed).
  

That's controlled by the settings in REINSTALLMODE.



The REINSTALLMODE options are set by the bootstrapper, aren't they?
I'm using the setupbld bootstrapper with the mcpsu options. Does this 
seem correct?


Thanks again.

Fred
  
Ok. I've just had a look at setupbld source code. And it seems that 
REINSTALLMODE is set to vomus for a minor upgrade.
I guess I need it to be set to vamus to force all files to be rewritten. 
Is there another bootstrapper that would allow me to achieve this?


Thanks again.

Fred

begin:vcard
fn;quoted-printable:Fr=C3=A9d=C3=A9ric Viollet
n;quoted-printable:Viollet;Fr=C3=A9d=C3=A9ric
org:Bull, Architect of an Open World (TM);Evidian S.A.
adr;quoted-printable:;;Rue Jean Jaur=C3=A8s;Les Clayes Sous Bois;;78340;France
email;internet:[EMAIL PROTECTED]
title:Software Engineer
tel;work:01 30 80 77 34
url:http://www.evidian.com - http://www.bull.com
version:2.1
end:vcard

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX Permission Element

2007-10-05 Thread Strele Franz
It's the other way round:

In v2 its Permission with Extended=yes:

CreateFolder
Permission Extended=yes ... /
/CreateFolder


In v3 its PermissionEx with WixUtilExtension-namespace (here util):

CreateFolder
util:PermissionEx ... /
/CreateFolder



Hth,
Franz



 -Ursprüngliche Nachricht-
 Von: [EMAIL PROTECTED] [mailto:wix-users-
 [EMAIL PROTECTED] Im Auftrag von Rob Hamflett
 Gesendet: Donnerstag, 04. Oktober 2007 18:31
 An: wix-users@lists.sourceforge.net
 Betreff: Re: [WiX-users] WiX Permission Element
 
 So are you saying that the following should work?  Because it doesn't?
 Candle reports:
 error CNDL0005 : The CreateFolder element contains an unexpected child
 element 'PermissionEx'.
 
 Wix xmlns=http://schemas.microsoft.com/wix/2003/01/wi;
 ...
 CreateFolder
PermissionEx GenericAll=yes Read=yes ReadAttributes=yes
 CreateChild=yes Delete=yes
 DeleteChild=yes WriteAttributes=yes User=Everyone/
 /CreateFolder
 ...
 
 Do I need a particular argument to candle?
 
 Rob
 
 Bob Arnson wrote:
  Rob Hamflett wrote:
  I tried the same thing, but with util:Permission under CreateFolder,
 like I currently have with
  Permission.  Candle (2.0.5325) reports error CNDL0005 : The
 CreateFolder element contains an
  unexpected child element 'util:PermissionEx'. Changing
 util:PermissionEx to PermissionEx didn't
  help.
 
  In v3, it's Permission with the WixUtilExtension namespace (usually
  util). In v2, it's PermissionEx in the WiX namespace (because
  PermissionEx is parsed by the WiX compiler).
 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] While running custom action command shell window is appearing

2007-10-05 Thread V K Gangwar
Hello All,

While install/Uninstall msi package I see command shell appears and disappears. 
Actually I am using few custom actions related to command shell.
Is there  any way to hide these windows.

Regards,
Veerendra 

   
-
Tonight's top picks. What will you watch tonight? Preview the hottest shows on 
Yahoo! TV.-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX Permission Element

2007-10-05 Thread Rob Hamflett
Ah, thanks. I've got it building now.  Just as a note to anyone else reading 
along, I had to add 
wixca.wixlib to the arguments for light.

Rob

Strele Franz wrote:
 It's the other way round:
 
 In v2 its Permission with Extended=yes:
 
 CreateFolder
   Permission Extended=yes ... /
 /CreateFolder
 
 
 In v3 its PermissionEx with WixUtilExtension-namespace (here util):
 
 CreateFolder
   util:PermissionEx ... /
 /CreateFolder
 
 
 
 Hth,
 Franz
 
 
 
 -Ursprüngliche Nachricht-
 Von: [EMAIL PROTECTED] [mailto:wix-users-
 [EMAIL PROTECTED] Im Auftrag von Rob Hamflett
 Gesendet: Donnerstag, 04. Oktober 2007 18:31
 An: wix-users@lists.sourceforge.net
 Betreff: Re: [WiX-users] WiX Permission Element

 So are you saying that the following should work?  Because it doesn't?
 Candle reports:
 error CNDL0005 : The CreateFolder element contains an unexpected child
 element 'PermissionEx'.

 Wix xmlns=http://schemas.microsoft.com/wix/2003/01/wi;
 ...
 CreateFolder
PermissionEx GenericAll=yes Read=yes ReadAttributes=yes
 CreateChild=yes Delete=yes
 DeleteChild=yes WriteAttributes=yes User=Everyone/
 /CreateFolder
 ...

 Do I need a particular argument to candle?

 Rob

 Bob Arnson wrote:
 Rob Hamflett wrote:
 I tried the same thing, but with util:Permission under CreateFolder,
 like I currently have with
 Permission.  Candle (2.0.5325) reports error CNDL0005 : The
 CreateFolder element contains an
 unexpected child element 'util:PermissionEx'. Changing
 util:PermissionEx to PermissionEx didn't
 help.
 In v3, it's Permission with the WixUtilExtension namespace (usually
 util). In v2, it's PermissionEx in the WiX namespace (because
 PermissionEx is parsed by the WiX compiler).

 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Custom Action For Backing Up Files

2007-10-05 Thread Sebastian Brand
You can use the CopyFile element to copy files that are already on  
the target system. Altough for this you must use correct upgrade  
paths, i.e. not uninstall the old version during installation.


Best regards,
Sebastian Brand

Instyler Software - http://www.instyler.com


On Oct 5, 2007, at 3:46 AM, Darrell wrote:

  From what I can tell from searching the archives there is nothing  
 built
 into WiX that can backup the existing installation into a  
 subdirectory.
   From what I can tell I can use a custom action for this?  Is that
 correct?  Would I bind this as a Launch Condition?

 Has anyone done this before?  All I am looking for is just a simple
 backup of the files to a subdirectory.

 Thanks
 Darrell

 -- 
 ---
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a  
 browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How do I add an include file in a separate directory?

2007-10-05 Thread Sebastian Brand
WiX3 (and I guess WiX2 as well?) does support relative paths, with or  
without quotations.
See the wix sourcecode in preprocessor.cs - GetIncludeFile(..) to  
see how it resolves the paths.


Best regards,
Sebastian Brand

Instyler Software - http://www.instyler.com


On Oct 4, 2007, at 10:37 PM, Chandra Mohan wrote:

 How do I add an include file in a separate directory?

 ?include LicenseDialog.wsi ? works
 but
 ?include ..\Deployment\License\LicenseDialog.wsi ?
 or
 ?include ..\Deployment\License\LicenseDialog.wsi ?
 does not work inside my product.wsx file.

 Any inputs?

 Thanks,
 Chandra


 =


 -- 
 ___
 Search for products and services at:
 http://search.mail.com

 -- 
 ---
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a  
 browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] While running custom action command shell window is appearing

2007-10-05 Thread Eddie McCreary
V K Gangwar wrote:
 Hello All,

 While install/Uninstall msi package I see command shell appears and 
 disappears. Actually I am using few custom actions related to command 
 shell.
 Is there  any way to hide these windows.

 Regards,
 Veerendra

 

Use the Quiet Execution Custom Action

http://wix.sourceforge.net/manual-wix2/qtexec.htm

It wasn't clear to me at first, but you need to schedule a CA to set the
QtExecCmdLine property and then execute the quiet execution action.

-- 
Eddie McCreary  Outside of a dog, a book is a man's best
mailto:[EMAIL PROTECTED] friend.  Inside of a dog, it's too dark
http://www.heorot.org   to read. -Groucho Marx


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How I can get wixca.dll

2007-10-05 Thread V K Gangwar
Hello All,

How I can get wixca.dll.

regards,
Veerendra

   
-
Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. -
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How I can get wixca.dll

2007-10-05 Thread János Brezniczky
It should be included in the downloaded WiX package... In case of WiX2 it is
in the root folder of the zip file.

2007/10/5, V K Gangwar [EMAIL PROTECTED]:

 Hello All,

 How I can get wixca.dll.

 regards,
 Veerendra

 --
 Take the Internet to Go: Yahoo!Go puts the Internet in your 
 pocket:http://us.rd.yahoo.com/evt=48253/*http://mobile.yahoo.com/go?refer=1GNXICmail,
  news, photos  more.


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] how to exit the install if env varible is not found

2007-10-05 Thread Parakala, Padmavathi
Hi,

  I am new to wix and I am trying to do a x86 build.

I am setting up a varible 

$(env._BuildArch) =x86

?define Win64 = yes ?

Component Id=someComponent DiskId=1 Guid=someGUID 

Win64=$(var.Win64)

 

I am getting an error  

 

fatal error CNDL0023: Undefined environment variable: $(env._BuildArch).

 

how do I define this?

 

And other question is how to exit the install if env varible is not
found

 

Thank you,

Padma.

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] how to exit the install if env varible is not found

2007-10-05 Thread Christopher Painter
I think there was a second question in there also.  You can use the % operator 
as part of a condition expression ( LaunchCondiitons or Type 19 CA ) to exit 
the install.
   
  http://msdn2.microsoft.com/en-us/library/aa368012.aspx
  

Peter Marcu [EMAIL PROTECTED] wrote:
It is an environment variable. It need to be defined in your 
environment.
   
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Parakala, 
Padmavathi
Sent: Friday, October 05, 2007 2:04 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] how to exit the install if env varible is not found


   
  Hi,
I am new to wix and I am trying to do a x86 build.
  I am setting up a varible 
  $(env._BuildArch) =x86
  ?define Win64 = yes ?
  Component Id=someComponent DiskId=1 Guid=someGUID 
  Win64=$(var.Win64)
   
  I am getting an error  
   
  fatal error CNDL0023: Undefined environment variable: $(env._BuildArch).
   
  how do I define this?
   
  And other question is “how to exit the install if env varible is not found”
   
  Thank you,
  Padma.

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  
http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


   
-
Shape Yahoo! in your own image.  Join our Network Research Panel today!-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users