Re: [WiX-users] Error code 1631

2006-08-24 Thread Bob Arnson
Bahar Shah wrote: > again 1631 That's the code for ERROR_CREATE_FAILED. -- sig://boB http://bobs.org - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated tec

Re: [WiX-users] Ct: CheckBox control malfunction

2006-08-24 Thread Bob Arnson
Calin Iaru wrote: > Actually there's a repaint message which fails every time the Dialog > gets focus. Whatever control is on over a large bitmap - no matter if > it's CheckBox, PushButton - the bitmap will appear first and the control > will appear after the user hovers the mouse over that area

Re: [WiX-users] Any idea what might cause this 1603 error or how to figure it out?

2006-08-24 Thread Bob Arnson
Joe Kaplan wrote: > Nope, nothing much more interesting (although I like those log flags and may > use those from now on). > '/l*v' is full detail. Adding the '!' causes the file to get flushed after every line; it slows down logging (sometimes a lot) but it guarantees the order's as correct

Re: [WiX-users] Example of multiple browse buttons in a single Dialog

2006-08-24 Thread Bob Arnson
Lee Gavitt wrote: I’ve been looking for a means to provide two, or more, browse buttons in a single dialog box. I’ve found everything from confusing explanations to you can’t do it to some long way around a short barn of modifying INSTALLDIR. I'm still confused -- I thought y

[WiX-users] Custom Action Call to WcaGetProperty stopped working

2006-08-24 Thread Magus
Heres is my problem in custom action WcaInitialize(hInstall, "MyDLL") WCHAR *wcSource=new WCHAR[255]; hResult = WcaGetProperty(L"SOURCEDIR", wcSource); This funciton return 0, but nothing is put into wcSource Its like the property doesn't exist so I checked the log and there is a property SOURCED

[WiX-users] Search for a GAC component

2006-08-24 Thread Kevin Dente
Is there a recommended way to verify that a specific component is installed in the GAC as a pre-requisite for an install? All I'm seeing right now is a FileSearch, and that seems a little hack-ish (since the structure of the GAC is supposedly opaque). Thanks,Kevin -

Re: [WiX-users] Web.Config

2006-08-24 Thread Michael Osmond
Hi, I use the XMLFile Element to do this. I also set the path the the web.config using a [#fileid] property. Michael -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Petrut Andrei Sent: Friday, 25 August 2006 2:56 AM To: wix-users@lists.sourceforge.net S

[WiX-users] Recall: Example of multiple browse buttons in a single Dialog

2006-08-24 Thread Lee Gavitt
Lee Gavitt would like to recall the message, "Example of multiple browse buttons in a single Dialog". <>- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated tech

Re: [WiX-users] Stop IIS on uninstall

2006-08-24 Thread Joe Kaplan
What I've done in the past is just include a ServiceControl element in the component: You might change the Start and Stop attributes to get what you want. I was installing an ISAPI filter. The schema might be a little different in WiX3, but you get the idea. You shouldn't need your own CA

Re: [WiX-users] Any idea what might cause this 1603 error or how to figure it out?

2006-08-24 Thread Joe Kaplan
Nope, nothing much more interesting (although I like those log flags and may use those from now on). I tried regmon and filemon too and didn't see any obvious errors in there (although I did see a lot of activity that did not seem to get logged in the msi log such as all my files being deployed

Re: [WiX-users] WIX 3.0: File name problems

2006-08-24 Thread Brad Davis
AndI found out that my developer was pointing to the wrong schema...using an outdated version of an .wxs file.:)Thanks DerekOn 8/24/06, Derek Cicerone <[EMAIL PROTECTED]> wrote: Please download the latest weekly release.  I believe I caught and fixed that bug on Tuesday.   D

Re: [WiX-users] Stop IIS on uninstall

2006-08-24 Thread david adams
John: Does IIS have to be stopped or is it acceptable to simply stop the Website in IIS. Our install creates the Website, Application Pool, etc. with the Website items created in a "stopped" status. Upon completion of the install, we go into IIS and start the Website. Uninstall removes the

[WiX-users] Copying files to an existing directory structure

2006-08-24 Thread Brad Edwards
I created an installer package to install an application to the ProgramFilesFolder but I also need to copy some additional files to an existing directory on the server which will be entered in by the installer on a dialog box.  For example I need to copy the following files to c:\inetpub\ww

Re: [WiX-users] WIX 3.0: File name problems

2006-08-24 Thread Derek Cicerone
Please download the latest weekly release.  I believe I caught and fixed that bug on Tuesday.   Derek   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brad Davis Sent: Thursday, August 24, 2006 12:18 PM To: wix-users@lists.sourceforge.net; [EMAIL PROTECTED] Subject: [W

[WiX-users] WIX 3.0: File name problems

2006-08-24 Thread Brad Davis
Using WIX 3.latest:It seems that it doesn't like files that are not dlls: I keep on getting this error when trying to 'light' it up...this used to work in 2.x btw:C:\Projects\Atlas.Validation.Installers\ValidationMSI.wxs(19) : error LGHT0132 :The assembly file 'C:\Projects\Atlas.Validation\Buil

Re: [WiX-users] Stop IIS on uninstall

2006-08-24 Thread JosephMM
What I did was I had a bat file that was installed with my package. My custom action refered to the FileKey of that bat file and inside the bat file all I had was "iisreset /stop". Unfortunately, it's really ugly because a command prompt pops up. John Hidey (The C# Junkie) wrote: > > All > > H

Re: [WiX-users] Web.Config

2006-08-24 Thread JosephMM
What you can try doing is use the XMLFile tag to alter the web.config file Simply use this in a component: Petrut Andrei wrote: > > Hi. Does anyone know how to modify a web.config > file? > I have a page in a setup where I want to let the user > to change the language of the applica

Re: [WiX-users] WcaAddTempRecord with ScrollableText

2006-08-24 Thread JosephMM
Thank you very much! This is exactly what I wanted! However now I'm having trouble trying to get public properties from the MSI because of string conversions. I'm so lost. Here's a snippet of my code: { DWORD lengthOfGettingStuff; LPWSTR getting

Re: [WiX-users] How to put '\"' in the customaction as it is ?

2006-08-24 Thread Chandra Rentachintala
Thanks for the suggestion, but doing that caused the failure of schtasks With 1631 error. Thanks for the " suggestion. But fixing the backslash in square brackets fixed the issue. mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 3:32 AM To: Chandra Rentachintala Cc: wix-users@lists.sour

Re: [WiX-users] Failed to locate connection for merge

2006-08-24 Thread Derek Cicerone
What version of WiX are you using (the exact version)?  That looks like a bug we’ve fixed already.   Thanks, Derek   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Ludlow Sent: Thursday, August 24, 2006 9:09 AM To: wix-users@lists.sourceforge.net Subject: [WiX-us

Re: [WiX-users] AddValidReference missing?

2006-08-24 Thread Derek Cicerone
We’ve changed the APIs for extensions in WiX 3.0.  Please take a look at CompilerCore.cs to get an idea of what’s now available.   Specifically, for simple references, we now track source line information so that error messages can not only tell you that a referenced item is unavailable b

[WiX-users] Web.Config

2006-08-24 Thread Petrut Andrei
Hi. Does anyone know how to modify a web.config file? I have a page in a setup where I want to let the user to change the language of the application that he wants to install and I have to modify the web.config file to do that. Please give me a hint. Thanks in advance. __

[WiX-users] Failed to locate connection for merge

2006-08-24 Thread John Ludlow
Hi all,   I have an installation that is including several merge modules (some are ours, some are written by MS).  Now, I'm trying to add another called VaultMessages, and light is throwing the following error:   light.exe : error LGHT0001 : Failed to locate connection for merge: VaultMessages.dll

[WiX-users] Stop IIS on uninstall

2006-08-24 Thread John Hidey (The C# Junkie)
All   How to I ensure that IIS gets stopped on and uninstall.  I'm installing a site (web service) and also a windows service.  The windows service uses the web service that I installed and the windows service is started on install.  When uninstalling, the web services bin directory and its content

[WiX-users] AddValidReference missing?

2006-08-24 Thread Stumpf, Mark
I am trying out the most recent release of WiX 3.0 (3.0.2023.0)   When I attempt to compile, I get an error that says,   error CS0117: 'Microsoft.Tools.WindowsInstallerXml.CompilerCore' does not contain a definition for     'AddValidReference'   I looked in the Object Browser and

[WiX-users] Ct: CheckBox control malfunction

2006-08-24 Thread Calin Iaru
Actually there's a repaint message which fails every time the Dialog gets focus. Whatever control is on over a large bitmap - no matter if it's CheckBox, PushButton - the bitmap will appear first and the control will appear after the user hovers the mouse over that area. And even when the contr

[WiX-users] Some questions about XmlFile element

2006-08-24 Thread Alexander Biryukov
My installer should work with XML file which can (or not) exist. 1) Can XmlFile create new XML file if it does not exist ? 1) Is possible do not overwrite existing XML attributes, but create if not exists ? -- Alexander Biryukov -

[WiX-users] Fwd: Command registration

2006-08-24 Thread John Ludlow
Damn did it again-- Forwarded message --From: John Ludlow <[EMAIL PROTECTED] >Date: Aug 24, 2006 10:37 AMSubject: Re: [WiX-users] Command registrationTo: [EMAIL PROTECTED] Actually, setup.exe is generally used so that TSE can tell it's a setup, and go into setup mode automatical

[WiX-users] CheckBox control malfunction

2006-08-24 Thread Calin Iaru
Hi List, I am using a CheckBox control on ExitDlg inviting the user to open a readme file. The problem is that this CheckBox appears only if the user hovers the mouse over the area where the CheckBox resides. If I change the sequence of the ExitDlg to become a WelcomeDlg, the CheckBox appea

Re: [WiX-users] Error code 1631

2006-08-24 Thread Bahar Shah
again 1631On 8/24/06, Bob Arnson <[EMAIL PROTECTED]> wrote: Bahar Shah wrote:> I am sure about the error code.> I am pasting the actual install log entry>> "Action ended 15:42:08: LaunchAgentUI. Return value 1631."Custom actions can return any UINT value. Check what values your CA returns. --sig://