Re: [WiX-users] Wix 2.0 NGEN problem

2007-05-08 Thread Bob Arnson
Joseph Aquilino wrote: > -ext "Microsoft.Tools.WindowsInstallerXML.Extensions.NetFxCompiler, > Small typo: It's initial-cap "Xml" not "XML." -- sig://boB http://joyofsetup.com/ - This SF.net email is sponsored by DB2 E

Re: [WiX-users] odd Repair issue

2007-05-08 Thread Bob Arnson
John Lalande wrote: > I have an issue where my current build on first start does a Repair if > it has upgraded a previous version. This does not occur with a fresh > install, only after the major upgrade. > > I have logged the install of the old version, the upgrade and the > Repair, but I don'

Re: [WiX-users] Disk Cost dialogs not show cost?

2007-05-08 Thread Bob Arnson
Magus wrote: > I check those out. The order of what I am doing > NOT > Installed > Not > Installed AND QUICK = 0 > The "Options" custom action contains a skinned dialog to my installation is > the one that contains the button to start up the disk cost dialog. > That dialog can't run until Costi

Re: [WiX-users] WiX3 Nant Tasks

2007-05-08 Thread Bob Arnson
Neil Sleightholm wrote: It looks like it is a bug in CandleTask.cs, the code is not returning any source files to build if the rebuild="true" flag is set. I think NeedsRebuilding() should look like this: Cool, thanks. PS I have signed the assignment agreement but have never been contacte

Re: [WiX-users] and escape sequences.

2007-05-08 Thread Dhaval Patel
I have had to deal with "GO" statements at a rather deeper level when I started working with WIX - I was receiving similar errors and I raised the same questions you did back then. I have learnt from my mistakes to include a "GO" statement after every executable statement; just like Mike said, you

Re: [WiX-users] Disk Cost dialogs not show cost?

2007-05-08 Thread Magus
I check those out. The order of what I am doing NOT Installed Not Installed AND QUICK = 0 The "Options" custom action contains a skinned dialog to my installation is the one that contains the button to start up the disk cost dialog. If there were a work around say a way to tell the user the disk c

[WiX-users] Progress bar overall instead of per feature

2007-05-08 Thread Magus
Is there a way to make the progress bar display the installation overall instead of per file? If it helps I am using a External UI and the example from MSDN for Handling progress messages. -- View this message in context: http://www.nabble.com/Progress-bar-overall-instead-of-per-feature-tf371307

[WiX-users] Wix 2.0 NGEN problem

2007-05-08 Thread Joseph Aquilino
I'm a newbie to WiX and am attempting to change a working WiX 2.0 (2.0.4221.0) wxs source file to NGEN some executables automatically upon installation and their removal upon de-installation. I found an article from Derek Cicerone (I think) titled "NGen support in WiX", dated June 26, 2006, depic

Re: [WiX-users] Error LGHT0094 when thrying to reference WixUI_InstallDir

2007-05-08 Thread jrcolons
Simon Alford wrote: > > Hi, > > I am using Votive supplied in the Wix-3.0.2420.0.msi to build my .wxs > files. > > When I include the line to include > the > "change install directory UI" I get this error: > > Error LGHT0094: Unresolved reference to symbol 'WixUI:WixUI_InstallDir' in > sec

Re: [WiX-users] WiX3 Nant Tasks

2007-05-08 Thread Neil Sleightholm
It looks like it is a bug in CandleTask.cs, the code is not returning any source files to build if the rebuild="true" flag is set. I think NeedsRebuilding() should look like this: protected override bool NeedsRebuilding() { // Check the base class. if

Re: [WiX-users] odd Repair issue

2007-05-08 Thread John Lalande
Assemblies in the GAC? http://support.microsoft.com/kb/905238/en-us Phil Wilson No, we are not installing anything to the GAC. - This SF.net email is sponsored by DB2 Express

Re: [WiX-users] odd Repair issue

2007-05-08 Thread Wilson, Phil
Assemblies in the GAC? http://support.microsoft.com/kb/905238/en-us Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Lalande Sent: Tuesday, May 08, 2007 9:45 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] odd Rep

[WiX-users] Feature Condition not evaluating correctly

2007-05-08 Thread Mike Menaker
I have these components in Feature 1. What I am trying to do is if only feature1 is selected the website is the home directory of the default web site on IIS, if feature 2 is selected as well the website isn't the home directory on IIS. However the first case is always being evaluated as true even

Re: [WiX-users] Scrollable events

2007-05-08 Thread Mike Dimmick
I'd call that works-by-fluke. Not a particularly good idea, IMO. -- Mike Dimmick _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shaun Wilde Sent: 08 May 2007 08:34 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Scrollable events Amazingly eve

Re: [WiX-users] run a dos command through wax

2007-05-08 Thread Mike Dimmick
'rmdir' is not a separate program but a cmd.exe built-in command. If you want to remove a directory on installation, use a RemoveFolder element. -- Mike Dimmick _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hooman Amini Sent: 08 May 2007 16:19 To: wix-users

Re: [WiX-users] Error LGHT0094 when thrying to referenceWixUI_InstallDir

2007-05-08 Thread Mike Dimmick
Add -ext WixUIExtension to the light command line. WiX extensions can now carry their .wixlibs as an embedded resource. -- Mike Dimmick _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simon Alford Sent: 08 May 2007 17:46 To: wix-users@lists.sourceforge.net Su

[WiX-users] Error LGHT0094 when thrying to reference WixUI_InstallDir

2007-05-08 Thread Simon Alford
Hi, I am using Votive supplied in the Wix-3.0.2420.0.msi to build my .wxs files. When I include the line to include the "change install directory UI" I get this error: Error LGHT0094: Unresolved reference to symbol 'WixUI:WixUI_InstallDir' in section 'Product:{5D51B6E0-FD4D-11DB-8314-0800200C9

[WiX-users] odd Repair issue

2007-05-08 Thread John Lalande
I have an issue where my current build on first start does a Repair if it has upgraded a previous version. This does not occur with a fresh install, only after the major upgrade. I have logged the install of the old version, the upgrade and the Repair, but I don't know what I should be looking f

[WiX-users] Votive Localization question

2007-05-08 Thread Scott Sam
I'm using votive in wix 3.0. We have to make an install in French and English. Is it possible to make one project create two msi's when built, one in each language? If so how? If not what is the best way to accomplish my goal, which is to have two msi's, one French and one English? -Origin

[WiX-users] run a dos command through wax

2007-05-08 Thread Hooman Amini
Hello, I tried to run the following command: but it doesnt seem to work properly. is it technically possible to parse switch parametes like /s /q? Cheers, Hooman --- QAS Ltd. Registered in England: No 2582055 Registered in

[WiX-users] run a dos command through wax

2007-05-08 Thread Hooman Amini
Hello, I tried to run the following command: but it doesnt seem to work properly. is it technically possible to parse switch parametes like /s /q? Cheers, Hooman --- QAS Ltd. Registered in England: No 2582055 Registered in Aus

Re: [WiX-users] Scrollable events

2007-05-08 Thread Bob Arnson
Rob Mensching wrote: Why do you have "1" as the Condition in the Publish element? That should be unnecessary. Blank means no condition, which means run always. Except for control events, where it's slightly more complicated: The installer triggers the event if the conditional statement i

Re: [WiX-users] WiX3 Nant Tasks

2007-05-08 Thread Neil Sleightholm
I only looked at setup.build and that uses an exec of msbuild to build the msi. Looking deeper I found the nant tasks being used in what appears to be an identical fashion to mine but I must be missing something. I am using v3.0.2813.0. The light task works fine and I have had to resort to exec'ing

Re: [WiX-users] ConfigureSQL Leaked MSIHANDLE

2007-05-08 Thread Rob Mensching
Hmm, that would suggest that there is still some memory issue. It is likely that your SQL script is exactly the right shape and size to hit this issue. If you could attach a debugger to the install with pageheap turned on, hopefully we can narrow down the exception. From: Don Tasanasanta [mai

Re: [WiX-users] Scrollable events

2007-05-08 Thread Shaun Wilde
Force of habit and readability for other users not as wixified as I From: [EMAIL PROTECTED]: [EMAIL PROTECTED]; [EMAIL PROTECTED]: Tue, 8 May 2007 07:50:00 -0700Subject: RE: [WiX-users] Scrollable events Why do you have “1” as the Condition in the Publish element? That should be unnecess

Re: [WiX-users] Scrollable events

2007-05-08 Thread Rob Mensching
Why do you have "1" as the Condition in the Publish element? That should be unnecessary. Blank means no condition, which means run always. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shaun Wilde Sent: Tuesday, May 08, 2007 12:34 AM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Change package name

2007-05-08 Thread Bob Arnson
Anton Filippov wrote: > When I migrate to WiX3, I changed package name. And created .exe with > iexpress > And now, when I try to install new package over installed previous, I > have an error, during reinstall. If you change the package name, you can't use a small or minor update; you must use

Re: [WiX-users] WiX3 Nant Tasks

2007-05-08 Thread Bob Arnson
Neil Sleightholm wrote: Has anyone got the nant tasks to work with WiX V3? My nant task looks like this: The WiX build uses them extensively. Which version of WiX are you using? It shouldn't matter as any build in which the WiX tasks were broken wouldn't have built and been released, but.

Re: [WiX-users] Disk Cost dialogs not show cost?

2007-05-08 Thread Bob Arnson
Magus wrote: > I have a disk cost screen, however when I click it the required space is 0 > for all drives. If I exit and click it again the required cost is what it > should be? Is there something I should make sure I am doing before calling > this the first time > Check out the CostFinalize

Re: [WiX-users] Expression Syntax - SET operators

2007-05-08 Thread Bob Arnson
Sankaranarayanan wrote: > Are there any set operators available in WIX to do operations such as LANG1 > in ('en-US', 'ru-RU', 'it-IT', 'es-ES', 'zh-CN') > MSI doesn't have that support. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] Pointing Tallow at an SLN file

2007-05-08 Thread Bob Arnson
Brad Butts wrote: > I'd like to be able to point Tallow at an SLN and have it interrogate > the SLN and build out the appropriate directory and file structure. > Any thoughts on this? I know I could parse the SLN but there are lots > of variations I'd have to account for: class libs, solution

Re: [WiX-users] and escape sequences.

2007-05-08 Thread Albert van Peppen
Hi, As fas as i can see in your SQL code it should be possible to just drop the [ and ] in your SQL code. That will solve that part. Regards, Albert van Peppen Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Kevin Burton Verzonden: maandag 7 mei 2007

[WiX-users] unidrv printer installation with difxapp?

2007-05-08 Thread Friedrich Dominicus
I'm still struggling with this. I just can tell that having the .inf file and running Add Printer wizard adds the printer as expected. But if I try that with a custom action, the printer driver is not installed in the proper place but just written to the DriverStore, and the thing failed to add the

[WiX-users] Errormsg on custom action & remove default userinfo

2007-05-08 Thread Pseudonymic Wannabe
We do some dependency checks via a DLL called with custom actions, how can one show the Error Dialog/Errorbox with a message depending on the callback from the custom action or property? Another thing, on our user registration dialogue for some reason MSI fills inn the Username and Company aut

Re: [WiX-users] IP Address

2007-05-08 Thread Krishna Kishore B
Any question while creating a new Website I am getting the error "Failed to Read IISWebsTable" below is my configuration, WIX version Used 2.0.4820.0, 2.0.3309.0 Can you please help me to resolve this issue. Regards krishna From: Rennie Pet

[WiX-users] Change package name

2007-05-08 Thread Anton Filippov
Hi When I migrate to WiX3, I changed package name. And created .exe with iexpress And now, when I try to install new package over installed previous, I have an error, during reinstall. Can't find C:\Docume~1\A\Locals~1\...\icsinstall.msi (now I use install.msi) How to change msi-package name an

Re: [WiX-users] Condition to check if Feature was selected.

2007-05-08 Thread Rennie Petersen
On this page you can see how to test for which features have been selected, although here I use it for another purpose. Hope this helps... http://www.merlinia.com/mdt/WiXTutorial4.msl Rennie From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beh

Re: [WiX-users] How revoke a security group on a file

2007-05-08 Thread NUNZIANTE GAITO (SA/ERI)
Hi, I'll try to explain better my problem: With the following code: I'm able to remove all permissions of the group SECUREADMG on the hwmblk.exe file but the security window displays again the SECUREADMG group. I'd remove this group. How I can do that? Thank you in advance and Best Regard

Re: [WiX-users] Scrollable events

2007-05-08 Thread Shaun Wilde
Amazingly everything looked so much clearer this morning and I solved this issue by just adding a DoAction to the ScrollableText Not sure if there is a way to filter the event to just scroll events as the cursor goes a bit flicker manic. But it works for the purpose required (which will

[WiX-users] WiX3 Nant Tasks

2007-05-08 Thread Neil Sleightholm
Has anyone got the nant tasks to work with WiX V3? My nant task looks like this: When I run it with verbose output on I see (this is hacked a bit to hide real folder names): [candle] Rebuilding: the 'rebuild' attribu