Re: [WiX-users] Manually setting inclusion destination?

2007-02-19 Thread Very Secret
How can I then 1) automatically collect all the contents of a (huge) directory, say foo/ 2) add foo/ to a destination dir of my choice ? Thanks in advance (Please don't start a discussion of the necessity of performing such an automatic collect: A manual inclusion of all the files in foo/ is

[WiX-users] How to display message conditionally

2007-02-19 Thread Anil Prasad
Hi, [Sorry for asking dumb question] I want to display warning message in WiX based on some property value. The closest I find is Condition which will always terminate the installation. What I want to do is that if property is value is something else than expected, I want user to decide if he

[WiX-users] Patching

2007-02-19 Thread André Pönitz
Hi all. I am curently trying to create a working .msp with Wix v3 So far I followed the Wix v2 tutorial and created a .msp that is supposed to replace in file 'a.txt' the contents 'old stuff' by 'new stuff'. When I run msiexec '/l*v' PatchLog.txt /p patch.msp REINSTALL=ALL REINSTALLMODE=omus

Re: [WiX-users] Nested folders

2007-02-19 Thread Stefan Pavlik
Hi Ricardo... The folder is not created unless you install some file in this folder. Another way to ensure that the folder is created is using the CreateFolder element. Te folder will be created even if it is empty. But it will not be removed automaticaly on uninstallation (you need to specify

Re: [WiX-users] Patching

2007-02-19 Thread Simon Topley
I'm not sure how much use this will be to you, but I ran into a large number of issues with patching, I haven't touched it in a while as we are now thinking a full re-release is going to be cleaner. I created a self extracting exe file using iexpress.exe (standard part of windows) and the command

Re: [WiX-users] Nested folders

2007-02-19 Thread Ricardo Lopes
Hi Stefan, I suppose that was the case with the App\Documents folder, but what about the App\Backups ? It has files and is part of the feature ProductFeature. On 19/02/07, Stefan Pavlik [EMAIL PROTECTED] wrote: Hi Ricardo... The folder is not created unless you install some file in this

Re: [WiX-users] Patching

2007-02-19 Thread André Pönitz
Simon Topley wrote: I'm not sure how much use this will be to you, but I ran into a large number of issues with patching, I haven't touched it in a while as we are now thinking a full re-release is going to be cleaner. I created a self extracting exe file using iexpress.exe (standard part

[WiX-users] Example Patch required

2007-02-19 Thread dave_c
Hi folks, I'm on the lookout for a simple example that illustrates patching using WIX. The functionality requried is Step 1. Apply original application and associated code. Step 2. Apply a patch to some of the files from step 1 Step 3. Have ability to remove the patch software, leaving the

Re: [WiX-users] Example Patch required

2007-02-19 Thread dave_c
For clarity. I should have added that when I ran evertyhing. I installed Error.msp which laid down my foobar file. When I applied the patch there were no updates to the Control Panel Add/Remove programs but the updated foobar file was installed. When I de-installed Foobar from Add/Remove

Re: [WiX-users] Nested folders

2007-02-19 Thread André Pönitz
Ricardo Lopes wrote: I don't know why it install one component and not the other (at least i can't find it) if they belong to the same feature (and only one). You could have a look at the installation log (i.e. the file log.txt produced by running 'msiexec /l*v log.txt /i yourinstaller.msi'

Re: [WiX-users] Example Patch required

2007-02-19 Thread André Pönitz
dave_c wrote: I'm on the lookout for a simple example that illustrates patching using WIX. The functionality requried is Step 1. Apply original application and associated code. Step 2. Apply a patch to some of the files from step 1 Step 3. Have ability to remove the patch software,

Re: [WiX-users] Example Patch required

2007-02-19 Thread André Pönitz
dave_c wrote: For clarity. I should have added that when I ran evertyhing. I installed Error.msp which laid down my foobar file. When I applied the patch there were no updates to the Control Panel Add/Remove programs but the updated foobar file was installed. In this control panel, do you

Re: [WiX-users] Example Patch required

2007-02-19 Thread dave_cory
Doh!! That was exactly the problem. Once I selected this option I was able to see the patch and remove it. Thanks for that. Dave Cory P Please consider the environment - do you really need to print this email? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [WiX-users] How to display message conditionally

2007-02-19 Thread Rob Hamflett
Create a dialog with 'continue' and 'cancel' buttons. On the continue button have an event to open whatever dialog you want to continue your install, and on the cancel button have this event: Publish Event=EndDialog Value=Exit![CDATA[1]]/Publish Rob Anil Prasad wrote: Hi, [Sorry for

Re: [WiX-users] Nested folders

2007-02-19 Thread Ricardo Lopes
I found out the problem. After looking carefully at the log file i found out that the file were been copied to the windows fonts folder, because the directory id was FontsFolder and the value was overridden by the MSI. After changing the id to something else it worked fine. Thanks. On

Re: [WiX-users] Com registration using tallow

2007-02-19 Thread Mike Dimmick
I'm assuming that you actually mean a regular old COM component written with ATL, rather than 'COM Interop' which to me means a .NET component registered with COM. tallow -c is for use with .NET assemblies. It won't work with unmanaged components. tallow -reg is for use with REGEDIT-style

Re: [WiX-users] Com registration using tallow

2007-02-19 Thread Lindsay Harris
Mike, thanks so much for the reply, your response helped push me in the right direction. You are correct I did mean a regular old COM component. Thanks! Lindsay Harris From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: Monday, February 19, 2007 1:28 PM To: Lindsay Harris;

Re: [WiX-users] How to display message conditionally

2007-02-19 Thread Bob Arnson
Anil Prasad wrote: I want to display warning message in WiX based on some property value. The closest I find is Condition which will always terminate the installation. What I want to do is that if property is value is something else than expected, I want user to decide if he want to

Re: [WiX-users] Default REINSTALLMODE for repair

2007-02-19 Thread Bob Arnson
Johan Appelgren wrote: I don't think WixVariables works for what I'm trying to do. If I try to use a wix variable candle fails with an error that states that only integers are valid values for the Control/@Width attribute. Could I be doing this the wrong way somehow? Could you show your

Re: [WiX-users] Default REINSTALLMODE for repair

2007-02-19 Thread Johan Appelgren
On 2/20/07, Bob Arnson [EMAIL PROTECTED] wrote: Johan Appelgren wrote: I don't think WixVariables works for what I'm trying to do. If I try to use a wix variable candle fails with an error that states that only integers are valid values for the Control/@Width attribute. Could I be doing

[WiX-users] Problem With Creating a Group while installing and Granting Permissions to it

2007-02-19 Thread anjali kulkarni
Hi, I want to create a group called TestUsers in the installer of my Test.dll and in my Test.wxs, I want to create a folder and grant some permissions to this TestUsers group. The problem here was that, Since CreateFolders is executed before InstallFinalize (Where in my group would be