Re: [WiX-users] CheckBox Problem

2006-10-12 Thread Bob Arnson
Agustín K-ballo Bergé wrote: > Good advice, but didn't work :(. I wasn't aware that the location of the > control items represented the z-order. Now I'm thinking that my problem > should be probably related to my show action. > Try reversing the logic. Leave it visible and then have a "hide"

Re: [WiX-users] CheckBox Problem

2006-10-12 Thread Agustín K-ballo Bergé
Good advice, but didn't work :(. I wasn't aware that the location of the control items represented the z-order. Now I'm thinking that my problem should be probably related to my show action. NOT Installed K-ballo.- Bob Arnson escribió: > Agustín K-ballo Bergé wrote:

Re: [WiX-users] Readme file

2006-10-12 Thread Bob Arnson
Leila Lali (Excell Data Corporation) wrote:     NOT InstalledCustom> InstallExecuteSequence> Publish control events from the exit dialog to run the cust

Re: [WiX-users] Wix: how to generate 64-bit MSIs

2006-10-12 Thread Bob Arnson
Vamsi Krishna K. wrote: > Depending on some environment variables, I need to generate MSIs for > different CPU architectures (x86, a64, ia64). I can't figure out how > to generate 64-bit MSIs using WiX. Searched on the net and in the > tutorials, didn't find anything. Can anyone please help? > C

Re: [WiX-users] CheckBox Problem

2006-10-12 Thread Bob Arnson
Agustín K-ballo Bergé wrote: > Everything works as expected, except for a visual glitch. The CheckBox > is not shown until it gets mouse focus! Could this be related to a > z-order problem? Probably. Take a look at WixUI v3's ExitDialog. Try putting the bitmap first. -- sig://boB http://bobs

Re: [WiX-users] Set permissions for files and folders

2006-10-12 Thread Bob Arnson
Petrut Andrei wrote: > Hi. I want to do the following thing: I want to set > the permissions for a folder or for a file to ASPNET. > Have you checked out the Permission element? -- sig://boB http://bobs.org - Using T

Re: [WiX-users] RegEx replacement

2006-10-12 Thread Bob Arnson
Andy Britcliffe wrote: > I have a file that I would like to run a regex on to replace text with > a passed in property. I've been looking through the documentation but > haven't seen anything obvious that would enable me to do this. Is it > possible? There's no standard or custom action to do i

Re: [WiX-users] Calling another Exe from setup.exe

2006-10-12 Thread Bob Arnson
Vivek Pareek (Accenture) wrote: Above is code for Finish button. When I run it through MSI, It works properly, but when I create setup.exe for my msi, It do not launch the exe. You should check with whoever supplied the tool to create the .exe. -- sig://boB http://bobs

Re: [WiX-users] how to enforce assembly to be gac'd even when thereisalready a copy in the gac

2006-10-12 Thread Bob Arnson
Frank Tse wrote: I’m using v3 though.  I just tried the latest v3 build 2211 but the behavior is the same.  Do you know if the fix in v2 has been ported to v3? No, not yet. I added a note to your feature request. -- sig://boB http://bobs.org ---

Re: [WiX-users] The coveted Change/Remove button

2006-10-12 Thread Bob Arnson
Jason Hartman wrote: > If Add & Remove Programs uses a Change/Remove button only for packages > with external UI handlers, is there any way (setting a reg key, adding a > property to the MSI, etc) to use an MSI library (msi.dll?) as an > "external" UI handler? > Nope. ARP displays individual bu

[WiX-users] Wix: how to generate 64-bit MSIs

2006-10-12 Thread Vamsi Krishna K.
Hi, I've been using WiX to build my tool's installer, and ran into a problem. Depending on some environment variables, I need to generate MSIs for different CPU architectures (x86, a64, ia64). I can't figure out how to generate 64-bit MSIs using WiX. Searched on the net and in the tutorials, didn

[WiX-users] [WiX-commits] Calling another Exe from setup.exe

2006-10-12 Thread Vivek Pareek (Accenture)
  Hi,   I need to launch another setup.exe, on the click of finish button of my installer.              REMOVE <> "ALL"        REMOVE <> "ALL"        1   Above is code for Finish button. When I run it through MSI, It wo

[WiX-users] Readme file

2006-10-12 Thread Leila Lali (Excell Data Corporation)
Hi,   I need to show my readme file after setup finished (after user click on Finish button). Now I’m using this code:  

[WiX-users] CheckBox Problem

2006-10-12 Thread Agustín K-ballo Bergé
Hello everyone! I'm having a problem with a dialog, and I would really apreciate some help. I have modified a dialog in order to add a check box that will launch my application after installed, as shown at the Wix Tutorial (lesson 8.6). Everything works as expected, except for a visual glitch. T

[WiX-users] RegEx replacement

2006-10-12 Thread Andy Britcliffe
Hi   I have a file that I would like to run a regex on to replace text with a passed in property. I've been looking through the documentation but haven't seen anything obvious that would enable me to do this. Is it possible?   Thanks   Andy.

[WiX-users] Calling another Exe from setup.exe

2006-10-12 Thread Vivek Pareek (Accenture)
    Hi,   I need to launch another setup.exe, on the click of finish button of my installer.              REMOVE <> "ALL"        REMOVE <> "ALL"        1   Above is code for Finish button. When I run it through MSI, It

Re: [WiX-users] how to enforce assembly to be gac'd even when thereisalready a copy in the gac

2006-10-12 Thread Frank Tse
I’m using v3 though.  I just tried the latest v3 build 2211 but the behavior is the same.  Do you know if the fix in v2 has been ported to v3?   Thanks, Frank   From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 11, 2006 9:35 AM To: Frank Tse Cc: 'Wilson, Phil'; w

[WiX-users] The coveted Change/Remove button

2006-10-12 Thread Jason Hartman
Hi! This is actually more of an MSI question, and I'm fairly certain that the answer is no, but it's worth a shot... If Add & Remove Programs uses a Change/Remove button only for packages with external UI handlers, is there any way (setting a reg key, adding a property to the MSI, etc) to use an

Re: [WiX-users] Tracking the msi installation progress

2006-10-12 Thread John Vottero
We do the same thing, we use the /qb option on msiexec for a basic UI which just shows progress. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of vijSent: Thursday, October 12, 2006 3:39 AMTo: wix-users@lists.sourceforge.netSubject: [WiX-users] Tracking the ms

Re: [WiX-users] INSTALLDIR creation "timing"

2006-10-12 Thread Bob Arnson
Sigurd Stenersen wrote: > I don't mind doing the actual action later, in fact I already moved it to > After='InstallFinalize', but there must be a way to tell if the product is > being installed at any point in the cycle ? > Be careful with custom actions relative to InstallFinalize. In Windo

Re: [WiX-users] Tracking the msi installation progress

2006-10-12 Thread Bob Arnson
vij wrote: > My setup includes a bootstrapper application which launches msi > package in silent mode(msi package is created using WiX tool set). How > can I track the progress of msi installation package? My bootstrapper > application and UI screens are written in C#. To get progress messages

Re: [WiX-users] Please ensure this is a valid assembly file error:revisited

2006-10-12 Thread Bob Arnson
Mike Dimmick wrote: > In 3.0.2128.0, the value is set explicitly to > FileAssemblyType.NotAnAssembly if the field in the .wixobj file is null. > Good catch. Yeah, that's the joy of the development branch. -- sig://boB http://bobs.org

Re: [WiX-users] INSTALLDIR creation "timing"

2006-10-12 Thread Sigurd Stenersen
Jonas Jonsson L (AL/EAB) wrote: > Not > Installed But that's even later - the "Not Installed" part quits working much earlier. I don't mind doing the actual action later, in fact I already moved it to After='InstallFinalize', but there must be a way to tell if the product is being installed at

Re: [WiX-users] Please ensure this is a valid assembly fileerror: revisited (aga in)

2006-10-12 Thread BULL, Dave, GBM
Hi Mike Thanks for looking into this for me. Really appreciate the time you have put into this. The difference between the two machines is, as you suspected, a difference in the CLR runtime versions installed. The machine where it worked had both CLR v2.0.50727 and CLR v1.1.4322 installed. It fai

Re: [WiX-users] Please ensure this is a valid assembly fileerror:revisited (aga in)

2006-10-12 Thread Mike Dimmick
The reason it doesn't happen under 2.0 is that different code is used to extract the AssemblyName etc when running on 2.0 or later than on 1.1. That code does not report errors when it cannot extract the assembly name, but simply fails silently. This means that when you do specify Assembly=".net",

[WiX-users] Wix 3.0 on Windows Vista RC1

2006-10-12 Thread Alessandro Surra
Hi all, On a machine with Windows Vista RC1 I have installed Wix 3 on top of Wix 2. Now when in visual studio 2005 I select new project -> Wix nothing is available. I have checked all registry entries and they seems ok to me. I have also checked the zip files with the templates and they seems ok

Re: [WiX-users] Please ensure this is a valid assembly file error:revisited (aga in)

2006-10-12 Thread Mike Dimmick
Do you have the same versions of .NET Framework installed on both machines? The .config files for most of the tools suggest that CLR 2.0 should be used if available, falling back to 1.1 if not. I have both installed. Otherwise, as the tools are compiled with the .NET 1.1 C# compiler, they would ru

Re: [WiX-users] Error linking WixIIsExtension

2006-10-12 Thread Mike Dimmick
Simply specify WixIIsExtension, not WixIIsExtension.dll. The library loader automatically adds .dll. I just tested this with the WixUIExtension. -- Mike Dimmick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jarrod Albert Sent: 11 October 2006 16:15

Re: [WiX-users] Please ensure this is a valid assembly file error:revisited

2006-10-12 Thread Mike Dimmick
I had the same problem with 3.0.2015.0. Try 3.0.2128.0. For my converted copy of the tutorial UI sample, Candle generates the same output (except that the order of references to the Media table is different). Light has the same result regardless of which .wixobj I use, the one generated with 2015

[WiX-users] Permissions on registry-entries

2006-10-12 Thread Jonas Jonsson L (AL/EAB)
I'm not sure if I should file a bug-report on this or add something to the WiX-tutorial, but anyway:     C:\Program Files\fooComp                Read='yes' Extended='no' User="fooUSRG" />    Read='yes' Extended='no' User="Everyone" /> One might believe when reading the WiX documentation, a

Re: [WiX-users] INSTALLDIR creation "timing"

2006-10-12 Thread Jonas Jonsson L (AL/EAB)
Not Installed /Jonas -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sigurd Stenersen Sent: den 11 oktober 2006 21:29 To: wix-users@lists.sourceforge.net Subject: [WiX-users] INSTALLDIR creation "timing" I'm using a custom action that accesses the INSTAL

[WiX-users] WiX 3.0.2211.0 and 2.0.4611.0 pending for release

2006-10-12 Thread Frederik Carlier
Hi all, Versions 3.0.2211.0 and 2.0.4611.0 are pending for release. The previous builds (3.0.2128.0 and 2.0.4528) seem to be working fine for most people. Judging from the change logs, the .xx11.0 builds only include bug fixes. That makes them a good release to push to the public download page

[WiX-users] Tracking the msi installation progress

2006-10-12 Thread vij
Hi, My setup includes a bootstrapper application which launches msi package in silent mode(msi package is created using WiX tool set). How can I track the progress of msi installation package? My bootstrapper application and UI screens are written in C#.   Any resources/pointers will be helpful.

Re: [WiX-users] Fine service control

2006-10-12 Thread Stefan Pavlik
Hi It is no problem with steps 4 and 5. You can stop and start the service using the element. But for first trhee steps you need to create custom action. I wuold prefer the Dll custom action (Type 1 ). Hope this will help. Stefan [EMAIL PROTECTED] wrote: > 1.) Before InstallFiles, determine

[WiX-users] Please ensure this is a valid assembly file error: revisited

2006-10-12 Thread BULL, Dave, GBM
Hi Bob, Thanks for your help. Here's an extract from the script (the filenames are strange because this was originally reverse-engineered from a Visual Studio-generated installer). I've tried putting Assembly="no" or Assembly="Win32" in the file element, but that didn't help. Dave