Re: [WiX-users] service not showing after ServiceInstall

2007-07-27 Thread davemave
Installutil /i works just fine. The service gets registered and shows up in the Services Snap-in. fiordean dacian wrote: > > > Can you manually register it? I mean something like .exe > /REGSERVER or similar? Does it show then? > > For checking if at the end of the installation it was 'regis

Re: [WiX-users] service not showing after ServiceInstall

2007-07-27 Thread davemave
Great tip, I think I found it: MSI (s) (18:50) [11:49:52:515]: Feature: ProductFeature; Installed: Absent; Request: Local; Action: Local MSI (s) (18:50) [11:49:52:515]: Component: ProductComponent; Installed: Absent; Request: Local; Action: Local MSI (s) (18:50) [11:49:52:515]: Component

Re: [WiX-users] Preprocessor Directives

2007-07-27 Thread John Hall
Where can I find the current list of preprocessor directives? I'm using the list from this article, http://msdn2.microsoft.com/en-us/library/aa302186.aspx#wixsetup_topic6 But I'm getting compilation errors in VS when using the ProjectAggregator2-3.0.2925.0.msi. Thanks

Re: [WiX-users] how to deliver additional assembly (GAC'd) files(notinthe RTM product) via an MSP

2007-07-27 Thread Gaurav Tiwari, HCL-Industry Solutions
Hi Bob, We tried updating an existing MSI using WIX 2.0 but I wasn't able to find out the way to do it. Please suggest how we can update the existing MSI. Is any such functionality is there in WIX 2.0. Thanks & Regards Gaurav Tiwari Phone No.-0120-4046361

Re: [WiX-users] Checkbox drawn with different coloured background

2007-07-27 Thread John Hall
John Hall wrote: I wanted to add a checkbox at the end of my installer and found the WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT property. However, when the checkbox is displayed it is drawn with the wrong background colour - see the attached screenshot. This is with Wix 3.0.3

Re: [WiX-users] Msi inside msi ?

2007-07-27 Thread Rob Mensching
This is very common. Fragments solve a great many of the frustrations you're likely to hit with Merge Modules... in case you need any extra ammo. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Collins, James Sent: Wednesday, July 25, 2007 12:09 PM To:

Re: [WiX-users] service not showing after ServiceInstall

2007-07-27 Thread Rob Mensching
The File that is the Service entrypoint must be the KeyPath for the Component. It doesn't appear that your Component below has any files in it so you're trying to make a Directory the Service entrypoint. I'm surprised the Windows Installer doesn't blow up faster... -Original Message-

Re: [WiX-users] Building a setup.exe

2007-07-27 Thread Rob Mensching
I'm slowly making progress on a new tool for the WiX toolset called "burn" (see: http://robmensching.com/blog/archive/2007/04/10/WiX-v3-Roadmap-Draft.aspx). It is a generic bootstrapper that will eventually handle the things you list below. It's slow going and not really anything in a state t

Re: [WiX-users] Preprocessor Directives

2007-07-27 Thread Peter Marcu
I don't think the preprocessor supports dots in the name of the variable. Try replacing them with underscores or something and see how that goes. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Hall Sent: Friday, July 27, 2007 12:58 AM To: Quat

Re: [WiX-users] ProjectAggregator2-3.0.2925.msi fails to installwith odd "network" error

2007-07-27 Thread Rob Mensching
And we changed Release Managers and (despite trying to get all the knowledge transferred) lost a few tricks of the trade. Official releases on SF can't handle files being named the same across releases (which is unfortunate for us). We need to get back to .zip files so the names don't change.

Re: [WiX-users] Problem writing registry values

2007-07-27 Thread Anidil
Hooray...Fantastic!! it works!!! appreciate :)) And i get error message while trying to update binary values though..code is as follows http://schemas.microsoft.com/wix/2006/wi"; /> Any similar suggestions? Daryn Mitchell wrote: > > Anidil, > > Does it help

Re: [WiX-users] ProjectAggregator2-3.0.2925.msi fails to install with odd "network" error

2007-07-27 Thread Rob Mensching
Here is a deep explanation about weird issues with changing the names of MSI files: http://blogs.msdn.com/robmen/archive/2004/12/08/278746.aspx As noted on another part of this thread, we really shouldn’t be changing the name of the MSI files and need to reintroduce the .zip file to get around t

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
Well I'm sure that my system has .NET on it so is there a conditional check I'd add somewhere to not try and install it if I already have it? Wilson, Phil wrote: > > This error usually refers to a custom action that's running an exe > that's being installed with the product, but isn't installed

Re: [WiX-users] Reorganising features and major upgrades

2007-07-27 Thread John Hall
John Hall wrote: I'm in the process of migrating my installer from InstallShield to WiX 3. As part of this I have reorganised and rationalised the features in the product. When I come to do a major upgrade from the old installation to m

Re: [WiX-users] ProjectAggregator2-3.0.2925.msi fails to installwith odd "network" error

2007-07-27 Thread Christopher Painter
Maybe a CA to parse out the filename from the OriginalDatabase property and compare it to be an expected value might help in this situation. I really wish MSI had file parsing operators as part of property formatting... Rob Mensching <[EMAIL PROTECTED]> wrote: And we chang

[WiX-users] MSI Icon

2007-07-27 Thread Hasan Zaidi
Hi, I wanted to know whether it was possible to change the icon of the MSI file generated by WiX to something else? Regards, Hasan - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find pr

Re: [WiX-users] MSI Icon

2007-07-27 Thread John Hall
> I wanted to know whether it was possible to change the icon > of the MSI file generated by WiX to something else? Hasan, Do you mean the icon that explorer displays for the .msi file or the icon that you see in the add/remove programs dialog once it is installed? If you mean the icon as viewe

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
I found this somewhere but it doesn't work and complains about the Component 'Install' not being valid $Install=3 jcafaro10 wrote: > > Well I'm sure that my system has .NET on it so is there a conditional > check I'd add somewhere to not try and install i

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
Ok well how can I get it to install from my MSI file? I don't understand why it won't install nor do I understand why it is even trying to install when I select Typical Wilson, Phil wrote: > > It doesn't matter if it's there or not. Your custom action type is > evidently "install the one from

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
I don't think the problem is because its already installed because if I just regularly click on the exe that I want to have automatically run, it works fine. Pierson Lee (Volt) wrote: > > If you think it is already installed, you can check the registry for a key > that shows it installed and ma

[WiX-users] FW: Building a setup.exe

2007-07-27 Thread LEMIRE, JOHN
Sorry meant to reply to the whole list not just Rob... From: LEMIRE, JOHN Sent: Friday, July 27, 2007 9:18 AM To: 'Rob Mensching' Subject: RE: [WiX-users] Building a setup.exe Hi Rob, I don't know if you're still watching for feedback on this blog post or not

[WiX-users] advertising extensions

2007-07-27 Thread koawmfot
i need to advertise a ffew file extensions so that self repair can kick off for some specific HKCU registry keys. the problem i have is that i am only adding an extension element and a MIME element, but no verb element, and that leaves the verb table out of the final MSI. now if i try and install

[WiX-users] Help on writing REG_MULTI_SZ values to registry

2007-07-27 Thread Anidil
I use the following code to write REG_MULTI_SZ values.. http://schemas.microsoft.com/wix/2006/wi"; /> But it gives me the following error while compiling.. C:\WiX\wix-2.0.5325.0-binaries\installer.wxs(231) : fatal error CNDL0031: An error oc curred while parsing

[WiX-users] register COM+ component using WIX wix-2.0.4820

2007-07-27 Thread sjoy
Hey When i try to register a .net COM+ component using wix-2.0.4820 this is the error i get. I am a newbie to Wix Action start 15:27:28: InstallFinalize. ComPlusInstallExecuteCommit: Error 0x80070490: Failed to find component object ComPlusInstallExecuteCommit: Error 0x80070490: Failed to co

[WiX-users] .net COM+ component registration

2007-07-27 Thread Shinu Joy
Hi, When i try to register a *.net COM+ component *using wix-2.0.4820 this is the error i get. I am a newbie to Wix Action start 15:27:28: InstallFinalize. ComPlusInstallExecuteCommit: Error 0x80070490: Failed to find component object ComPlusInstallExecuteCommit: Error 0x80070490: Failed to con

Re: [WiX-users] Error code 2753?

2007-07-27 Thread Pierson Lee (Volt)
If you think it is already installed, you can check the registry for a key that shows it installed and make that key the condition on whether or not you install your file -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10 Sent: Friday, July 27, 2

Re: [WiX-users] Error code 2753?

2007-07-27 Thread Wilson, Phil
It doesn't matter if it's there or not. Your custom action type is evidently "install the one from my MSI file", and if it's not being installed from your MSI file then you get error 2753. Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jca

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/installlevel.asp I went here and read up about the install level stuff. So if everything has an install level of 1, everything will install all the time. If I want things to install on complete and not typical I have to

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
Well now if I change my InstallExecuteSequence code to look like this: Installed Typical works right, as expected, because it will only try and install features that were actually Installed, and if I set feature level to 4, those features won't be installed. However, on the

Re: [WiX-users] Error code 2753?

2007-07-27 Thread Wilson, Phil
There are a number of things that don't seem right here: 1. It's usual to get the framework installed from a boostrapper, not from the MSI file. This is because it's MSI-based and therefore you can break the "can't run two simultaneous MSI installs" rule. Also, at least one version of the framewo

Re: [WiX-users] Help on writing REG_MULTI_SZ values to registry

2007-07-27 Thread Rob Mensching
WiX is XML. XML requires all the special characters (i.e. <>&;") to be escaped. You have a bunch of &'s below. You need to use & instead. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anidil Sent: Friday, July 27, 2007 2:39 AM To: wix-users@lists.sou

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
Well even if I skip the net framework install, it will still give the error so it must be the second one. I thought I already specified that I want the custom action to run only on install by having it a) start on installfinalize and b) put "Installed" in the intallexecutesequence command. How d

Re: [WiX-users] Error code 2753?

2007-07-27 Thread Arnette, Bill
Installed is the CURRENT state of the installation. I.e. You are telling that CA to run only if the applications is currently installed (i.e. you are uninstalling it). You want 'NOT Installed' for your condition. -- Bill Arnette www.starwitness.com -Original Message- From: [EMAIL P

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
I took out the "Installed" line and added InstallDefault = "local". Now when I do complete it throws out this InstallShield Command line parameters: dialog box...Typical throws 2753. Arnette, Bill wrote: > > Installed is the CURRENT state of the installation. I.e. You are > telling that CA t

Re: [WiX-users] MSI Icon

2007-07-27 Thread Mike Dimmick
You can change the Add/Remove Products icon using the ARPPRODUCTICON property. You're correct that you cannot change the icon used for the .msi file, nor the icon in the top-left corner of the install dialogs. -- Mike Dimmick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROT

Re: [WiX-users] Error code 2753?

2007-07-27 Thread Pierson Lee (Volt)
Anything that runs a Windows installer based install won't work because windows installer doesn't like running multiple instances simultaneously. The only way I've been able to trick it is to get the subsequent msi to kick off at the end(very end) of the installation process but it sounds like t

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
I think I fixed it kind of...by putting in INSTALLLEVEL = 1000 in my installexecutesequence it seems to work...no more 2753 errors. Now to figure out how to get .NET, itechlogger, and SQL to install. Yes pretty much. I want this one installer to install everything I need. .NET throws a syntax

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
Are there any other things it will never ever work for? Because I've commented out .net, and I still am installing itechlogger and microsoft sql Mike Dimmick-2 wrote: > > That will never, ever work for the .NET Framework. .NET Framework is an > MSI-based install, so you can't run it nested ins

Re: [WiX-users] Error code 2753?

2007-07-27 Thread Mike Dimmick
That will never, ever work for the .NET Framework. .NET Framework is an MSI-based install, so you can't run it nested inside another MSI anyway. It also has to play some peculiar tricks with the Windows Installer service to get updated versions of Fusion (the assembly loader) on there, as I recall.

Re: [WiX-users] How to automated uninstall?

2007-07-27 Thread LEMIRE, JOHN
Thanks to all who responded. I ended up writing a little bit of code to look up the installed product code in the registry by the product name and then spawn msiexec /x with that. PS to save headache just use the reg apis, the wmi ones work but the installed products search even scoped to local m

Re: [WiX-users] Error code 2753?

2007-07-27 Thread jcafaro10
I added in some silent commands into execommand and no more dialog errors. NET won't install but we knew that. The problem now is that if something is already installed it doesn't try to install it, it asks to remove or repair it. I need to figure out how to check if something is already instal

Re: [WiX-users] Building a setup.exe

2007-07-27 Thread Peterson, Joel
Hi Rob. I can't begin to tell you how much any work in this regard means to a lot of us. I'm waiting until I find a decent, customizable bootstrapper solution before switching all of our installations to WiX. I'd love to see more information on where you're going with it. I've put quite a lot o

[WiX-users] WriteMetabaseChanges: Fail createing web site does not makes the installer to rollbac

2007-07-27 Thread andresj_wix
Hi there. Anyone knows why this does not makes the installation to rollback? MSI (s) (E8:90) [11:31:12:393]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI1269.tmp, Entrypoint: WriteMetabaseChanges WriteMetabaseChanges: failed to open '/LM/W3SVC/3/' key, retrying 0 time(s) The me

[WiX-users] Wix Library Project

2007-07-27 Thread Quattro IV
Where can I find information about how to use the Wix Library Project? I have some applications that share components and would like to include the shared portions and reference them from a Wix project. Reese - This SF.net ema

Re: [WiX-users] MSI Icon

2007-07-27 Thread Hasan Zaidi
To John, Yes, I was referring to the icon as shown in Windows Explorer. I have a set of installers for my system and I was hoping to be able to have different icons for each installer. Oh well... Regards, Hasan John Hall wrote: >> I wanted to know whether it was possible to change the icon >>

[WiX-users] Custom action execution time

2007-07-27 Thread Levon Levonian
I have a VBS file that I want to run at the beginning of the installation, before the user is presented with a configurable directory dialog (since the script will set Session.Property("INSTALLDIR"). The script is currently in the binary table. I tried to run make it run after 'AppSearch', but it d

Re: [WiX-users] ACTIVE WINDOW

2007-07-27 Thread Billie Erickson
Have you ever wished for a expensive Watch? We have the piece for you! We carry all the top quality for a very small fraction of the price. www.miminhws.com - This SF.net email is sponsored by: Splunk Inc. Still grepping t

Re: [WiX-users] Building a setup.exe

2007-07-27 Thread Jim Hewes
Thanks for the info. I appreciate all the work you guys do on WiX. I'm a install novice, but it seems to me that some of the stuff the bootstrapper has to worry about should probably be done by Windows Installer. For example, I was surprised to discover that it's part of the bootstrapper's duty to

Re: [WiX-users] BOLD

2007-07-27 Thread Josh
Have you ever wished for a pricey Watch? We have the answer for you! We stock all the expinsive brands for a low precentage of the cost. www.huhhberr.com - This SF.net email is sponsored by: Splunk Inc. Still grepping th

[WiX-users] Database is trying to be dropped when it was not created during current install

2007-07-27 Thread Paramesh S
Hi, I am creating a database using the following wix code. On the first installation it creates the db successfully. During reinstall, if one the db scripts fails to run (any script running on this db using sqlstring), then during rollback setup tries to delete the database. M