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

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

[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

[WiX-users] Nested folders

2007-02-19 Thread Ricardo Lopes
Hi, I have problems creating folders on the instalation folder. The application folder is created but none of the folder inside it are created. Im using Wix 2 and my file looks like this:

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

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 I

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

Re: [WiX-users] Nested folders

2007-02-19 Thread Stefan Pavlik
I'd say that it should work. Try to put the "App\Backups" folder directly to INSTALLLOCATION folder. (I mean do not use the DirectoryRef element). If it does not help than I don't know. Maybe someone else will konw more about this problem... regards Stefan Ricardo Lopes wrote: > Hi Stefan, >

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

Re: [WiX-users] Nested folders

2007-02-19 Thread Ricardo Lopes
That was my first tentative but it didn't work, so i tried to use DirectoryRef as i posted. The CreateFolder fixed the problem with the empty folder, one problem less to worry :-) 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 fe

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

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 Program

Re: [WiX-users] Removing Patch software

2007-02-19 Thread dave_c
I downloaded the latest WIX 3 weekly build (wix_3.0.2612.0) and then the Vista SDK, extracted the three patch files required for building patch software as listed in the WIX tutorial and after making some small changes to the wxs files the issue I saw below disappeared. Thanks Bob Arnson-3 wrote

[WiX-users] Need to know NETFramework version ?

2007-02-19 Thread Stepan Tinskiy
How can I know current framework version? I need write path to the file placed in directory ...\FramWork\v2.0.50727\... For instance: File="[%WinDir]\Microsoft.NET\FrameWork\[???]\iisapi.dll". Any ideas? - Take Surveys. Earn

Re: [WiX-users] Patching

2007-02-19 Thread André Pönitz
Me, myself and I wrote: > 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 fil

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 .msi' Andre' -

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 softwar

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

Re: [WiX-users] uninstall shortcut...

2007-02-19 Thread André Pönitz
Alex Henderson wrote: > Sent: Sunday, February 18, 2007 10:44 PM > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] uninstall shortcut... > > Right, so I added the dummy KeyPath registry entry, like so: > > Guid="0454D0FC-190C-42c9-9506-DBA17DECBCB2"> >Key="Software\ScreenArchi

Re: [WiX-users] Need to know NETFramework version ?

2007-02-19 Thread Ricardo Lopes
This may help you know the version: http://blogs.msdn.com/robmen/archive/2006/10/05/Thursday-Night-_2600_quot_3B00_Deployment-Dinner-Discussion_2600_quot_3B00_-with-Charlie-Poole_2E00_.aspx#822238 The instalation folder i don't know but i remember i heard something about the netfx extension on t

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 Beh

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: Rob Anil Prasad wrote: > Hi, > > [Sorry for asking dumb question] > > I want to display warning me

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 19/02

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; wix-users@lists.sou

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 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 continue with ins

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 yo

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 >

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

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

2007-02-19 Thread anjali kulkarni
hi, Here is some more information we are using Windows Server 2003 Dot net 1.1 Wix 2.0.4103.0 Thanks, Anjali anjali kulkarni <[EMAIL PROTECTED]> wrote: 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