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 fil

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: In v3 its "PermissionEx" with WixUtilExtension-namespace (here "util"): Hth, Franz > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:wix-users- > [EMAIL PROTECTED] Im Auftrag von Ro

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

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: > > > > > > > In v3 its "PermissionEx" with WixU

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:

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,

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

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

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 p

[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" 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 i

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

2007-10-05 Thread Peter Marcu
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 n

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