Re: [WiX-users] ISAPI Filter installation hangs IIS

2006-07-29 Thread Derek Cicerone
To resolve the localization issue: I think you’ll need to pass –cultures:en-us to light to load the English resources for the extension.  This change was just made in the last release.   Please note that the custom action code in WiX 3.0 is identical to what can be found in 2.0.  We still

Re: [WiX-users] SelfRegCost on windows 2003 Server

2006-07-29 Thread Derek Cicerone
Title: SelfRegCost on windows 2003 Server It’s probably a missing dependency.  It might be easier to stop using self reg by running tallow (wix v2) or heat (v3) against the self-reg dll to collect its registry keys. J   Derek   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] O

Re: [WiX-users] rfc: break WiX 3.0 backwards-compatibility with WiX 2.0library (wixlib) files

2006-07-29 Thread Derek Cicerone
We already have a tool to convert from WiX 2.0 to WiX 3.0.  It’s called wixcop.  I assume you were referring to converting the source code itself (not the wixlib files) since just having the libraries without source is a bit dangerous.   We do not have a tool to convert from WiX 3.0 back

Re: [WiX-users] ANSI Characters

2006-07-29 Thread Derek Cicerone
You need to set the Product/@Codepage for the language you are using (refer to MSI documentation to find the proper codepage number).   Derek   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joseph Sent: Friday, July 28, 2006 6:04 AM To: wix-users@lists.sourcefor

Re: [WiX-users] ProgramMenuFolder and validation error

2006-07-29 Thread Derek Cicerone
This question has been coming up often.  Note that ALLUSERS is completely uppercase – so a user can change your installation to be per-user via the command line or several other methods.  This means that you need the HKCU key to ensure proper repair operation (since a shortcut is not a vali

Re: [WiX-users] Long path name to COM server

2006-07-29 Thread Derek Cicerone
The very latest WiX 3.0 release fixes this, enjoy! :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrey T Sent: Friday, July 28, 2006 4:47 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Long path name to COM server Hello, all! I have fo

Re: [WiX-users] GAC and call Custom Action

2006-07-29 Thread Joe Kaplan
In case anyone is actually interested in a "straight up" MSI installer for Enterprise Library that doesn't use the installer classes, here is what's involved. EL installs a variety of Event Sources, Performance Counters and WMI schema in order to implement its instrumentation features. They go

Re: [WiX-users] GAC and call Custom Action

2006-07-29 Thread Simon Burgess
I am using the Enterprise Library in this way as well. I decided to install the assembly into the GAC, also install the assembly to somewhere on the file system and finally install a batch file which is executed via a custom action after InstallFinalize that runs installutil – I know its no

Re: [WiX-users] Question about repeat installation of the same MSI

2006-07-29 Thread Phil Wilson
As you've discovered, when you install a product a cached MSI file is created, and maintenance activities use this cached MSI file. It's the ProductCode guid that indicates that the product is already installed on the system, and when a product is already installed MSI goes into maintenance mode.

Re: [WiX-users] rfc: break WiX 3.0 backwards-compatibility with WiX 2.0library (wixlib) files

2006-07-29 Thread Dave Williamson
If there are utilities to bring a pure WiX 2 code base up to a pure WiX 3 code base then breaking compatibility is fine by me.  We do not intend to mix the two.  The utilities would eliminate costly manual conversion time and provide a quick way for the entire WiX 2 code library to be conver

Re: [WiX-users] Launch Checkbox

2006-07-29 Thread Bob Arnson
Shmarya Rubenstein wrote: > > > > > After MSI has processed the ExecuteAction action, it stops following the sequence in InstallUISequence. Instead, it uses only the negative sequence numbers to show success or failure. Instead, publish a DoAction control event fro

Re: [WiX-users] GAC and call Custom Action

2006-07-29 Thread Bob Arnson
John Hidey wrote: Is there a way to do what I want to do.  I would think that this can be done.  Many installers do this, but maybe they use a C++ custom action which does the registry for them.  Any thoughts? Or they just use standard MSI support for registration. Calling G

Re: [WiX-users] ISAPI Filter installation hangs IIS

2006-07-29 Thread Bob Arnson
James Carter wrote: > [exec] > E:\delivery\Dev\wix_public\src\ext\iisextension\wixlib\IIsExtension.wxs(70) > : error LGHT0102 : The localization variable !(loc.ConfigureIIs ) is > unknown. Please ensure the variable is > defined.

Re: [WiX-users] How to set one File for two Components

2006-07-29 Thread Derek Cicerone
There's no better way - that's it. Derek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter G. Sakhno Sent: Friday, July 28, 2006 6:44 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to set one File for two Components Hello. I have tw

Re: [WiX-users] Question: Migrating Existing Installer to WindowsInstaller

2006-07-29 Thread Joe Kaplan
I used a similar approach to deal with migration of an app that was originally built with non-MSI WISE and then did the same basic thing again when my first MSI version was (mistakenly) installed per-user instead of per-machine. AppSearch for traces of the old stuff and LaunchCondition that pr

Re: [WiX-users] GAC and call Custom Action

2006-07-29 Thread John Hidey (The C# Junkie)
Sorry about that everyone.  These messages where posted two days ago when we were having problems with mail server at work.  Hope not too many more come across.  I dont want anyone thinking I'm flooding the mailing list.   Thanks John  On 7/26/06, John Hidey <[EMAIL PROTECTED]> wrote: Here is

Re: [WiX-users] GAC and call Custom Action

2006-07-29 Thread John Hidey
This was not my decision.  This is how the Microsoft enterprise library 2.0 does it.  We have signed the msentlib 2.0 and are putting in the gac and want to get all the instrumentation installed for it also with the installer.     From: John Vottero [mailto:[EMAIL PROTECTED] Sent: T

Re: [WiX-users] Should WiX add support for installingWindowsinstrumentation features?

2006-07-29 Thread Rob Mensching
This is good, except for the part about not creating an Extension. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Vottero Sent: Wednesday, July 26, 2006 5:32 AM To: Bob Arnson Cc: wix-users@lists.sourceforge.net; [EMAIL PROTECTED] Subject: Re: [WiX

Re: [WiX-users] Question: Migrating Existing Installer to Windows Installer

2006-07-29 Thread Bob Arnson
Rick Glos wrote: We just released version 5.0 of our product.  Spending 6 weeks updating our installer (we have a custom C# installer).  I can see our new customers instead using a new .msi for later versions (5.5, 6.0, etc).  What do I do about our existing customers when they w

[WiX-users] Long path name to COM server

2006-07-29 Thread Andrey T
Hello, all! I have following situation: when I use http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users

Re: [WiX-users] WiX and web applications

2006-07-29 Thread Dana Gutride
David:Check out tallow (it's packaged along with WiX 2.0), it works wonders.  You can process directories, .reg files, com components.  If you are using v3.0, heat is probably the tool you are looking for. DanaOn 7/27/06, David Keaveny < [EMAIL PROTECTED] > wrote: Is there an equivalen

Re: [WiX-users] Device scan before install

2006-07-29 Thread Chesong Lee
Calin, For your questions, the wizard will be disappeared automatically once you update your "Other devices" with actual drivers. AFAIK, there is no other workaround to prevent the wizard to pop up when a new device node is detected in the system. Actually, the point is that you should not to

Re: [WiX-users] Question: Migrating Existing Installer to WindowsInstaller

2006-07-29 Thread Foster, Richard - PAL
Rick,   This is all completely off-the-cuff, so it may not be appropriate.   Presumably, your current installer puts appropriate entries in the registry so you can do removal etc. You could use a RegistrySearch to locate one of these keys and determine that the previous version is installed.

[WiX-users] Long path name to COM server

2006-07-29 Thread Andrey T
Hello, all! I have following situation: when I use element to install Class for my COM server, I use "Server" attribute to set path to my COM server in registry (under InProcServer32 key). I use unadvertised mode (i. e. Advertise="no") for element. The problem is that WIX writes this in regist

Re: [WiX-users] [WiX-devs] GAC and call Custom Action

2006-07-29 Thread John Hidey
My custom action in install the Microsoft Enterprise Library into the gac and register all their Instrumentation classes. This is Microsoft code and they have the installers in the code so I assumed it would be easiest to just call them. Let me ask you this. I am not a c++ developer by any

Re: [WiX-users] Fwd: LGHT1055 InstallUISequence warning

2006-07-29 Thread Shmarya Rubenstein
I backed out of this a couple of months back because I was having difficulties... Let me see if I can find it in my source-control... otherwise I can try and reproduce...On 7/26/06, Rob Mensching <[EMAIL PROTECTED]> wrote: I know that I had trouble with Component referenceing because

Re: [WiX-users] Controls with Conditions

2006-07-29 Thread Dana Gutride
Michael:From what I've seen, the value of the Property doesn't update until the control loses focus.  If you have other textboxes on that dialog, you could try putting those after the database textbox so the user has to tab to those first.  Otherwise, you could use a maskededit control (see below f

Re: [WiX-users] Should WiX add support for installingWindowsinstrumentation features?

2006-07-29 Thread John Vottero
> This is good, except for the part about not creating an > Extension. He said there were no plans for V1. I assume that means it will be in V2! :) > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > John Vottero > Sent: Wednesday, July 26, 20

[WiX-users] Device scan before installing

2006-07-29 Thread Calin Iaru
Hi List, given the scenario below, I would like to know how to force a device scan before installing a driver: Device Manager shows "Other Device" detected The drivers are installed The drivers are uninstalled The device entry disappears from Device Manager, but there is no "Other Devi

Re: [WiX-users] conditions

2006-07-29 Thread Scott Sam
I have a component that looks like:                   From my understanding, it should right out Feat1 if the Feature1 feature is being installed, and it is not an upgrade.  That is not what is happening.  What am I doing wrong?  What is the

[WiX-users] ProgramMenuFolder and validation error

2006-07-29 Thread dangle123 ...
When defining a component with "ProgramMenuFolder" as the directory path for a menu item, an ICE38 validation error occur indicating that the component installs to user profile and that it must use a reg key under HKCU as its KeyPaths.  Since I have the property ALLUSERS=1 set doesn't this indicate

[WiX-users] Website Creation Error

2006-07-29 Thread DE�K JAHN, G�bor
On Tue, 25 Jul 2006 08:27:37 -0700, Derek Cicerone wrote: Hello, > This is a bit beyond my knowledge of the IIS custom actions. The > quickest way to find a solution is likely going to be debugging the > custom action yourself to see what’s going wrong. I have plenty of bandwidth, that's not t

[WiX-users] Question about repeat installation of the same MSI

2006-07-29 Thread Peter G. Sakhno
Hello. My installation package consists of MSI-file and set of directory with additional files. Those files are used by type 1 custom action (DLL file stored in a Binary table stream). Since these directory is required, in MSI there is a property that checks for the directory existence (via '') an

[WiX-users] Create folder in DRVSTORE

2006-07-29 Thread Calin Iaru
Hi List, is there any possibility to create a folder inside the system DRVSTORE? When installing a driver, some files may reside in different folders and the inf file needs them from different locations. The problem occurs when the installer copies these files to the DRVSTORE and the directo

Re: [WiX-users] Controls with Conditions

2006-07-29 Thread Bob Arnson
Michael Cline wrote: > Is there any way to update the property with every key press? > No. Unfortunately, MSI only updates properties on focus change. -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the

Re: [WiX-users] Fwd: LGHT1055 InstallUISequence warning

2006-07-29 Thread Derek Cicerone
inline   From: Shmarya Rubenstein [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 25, 2006 10:20 AM To: [EMAIL PROTECTED] Cc: John Ludlow; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Fwd: LGHT1055 InstallUISequence warning   Derek, I hadn't thought of using wixlib