Re: [WiX-users] Controlling feature selection by modifying the MSI

2007-05-04 Thread Bob Arnson
Rennie Petersen wrote: There's one more thing I'd like to provide: the ability to choose which Features are to be installed. Is it possible to do this by modifying the MSI? Yes. You can modify the Feature rows' Level column (e.g., to 0 to disable features). -- sig://boB http://joyofsetu

Re: [WiX-users] Light error

2007-05-04 Thread Bob Arnson
jrcolons wrote: > I try to build my wix project on VS 2005 and after half an hour or so i get > the message: > Light.exe" exited with code -532459699 > I can't figure out how to avoid it, nor what causes it > It's impossible to say without more detail: What's the complete error message and sta

Re: [WiX-users] Q: Nested Installation (CA 7, 23, 39)

2007-05-04 Thread Bob Arnson
Schrieken, Rene wrote: Are you sure? Is the Platform SDK wrong then? I do see a non supported for Windows Installer 1.0. Never crossed my mind that it still applies. Nested installations were deprecated (in MSI 3.0, I believe). They're no longer listed in current SDKs: http://msdn2.microsoft.

[WiX-users] Light error

2007-05-04 Thread jrcolons
I try to build my wix project on VS 2005 and after half an hour or so i get the message: Light.exe" exited with code -532459699 I can't figure out how to avoid it, nor what causes it any enlightment would be greatly appreciated: Jose -- View this message in context: http://www.nabble.com/Ligh

Re: [WiX-users] Q: Nested Installation (CA 7, 23, 39)

2007-05-04 Thread Richard.Foster
Rene, Sorry, I guess I should have been more clear. While support for nested installs is mentioned in the SDK, the official word from the Microsoft Installer team themselves is "Don't use them". See http://blogs.msdn.com/windows_installer_team/archive/2006/11/06/q-a-from -latest-windows-ins

Re: [WiX-users] Q: Nested Installation (CA 7, 23, 39)

2007-05-04 Thread Schrieken, Rene
Richard, Are you sure? Is the Platform SDK wrong then? I do see a non supported for Windows Installer 1.0. Never crossed my mind that it still applies. Regards, Rene From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Fri 5/4/2007 22:29 To: Schrieken, R

[WiX-users] Setting default home directory for web site

2007-05-04 Thread Mike Menaker
When installing 2 applications I would like the 2nd to always be the "Home Directory" of the default web site on the machine it gets installed on. This works when the installation happens with 2 machines (1 application on each machine, both home directories). However when they are both on the same

[WiX-users] ASP.NET web application uninstall

2007-05-04 Thread Mike Menaker
My web applications that I create don't delete the virtual dirs/apps from the Default Web Site section in IIS. The folders created are gone but you can see the app in the IIS. Has anyone been able to uninstall a web application?

Re: [WiX-users] Q: Nested Installation (CA 7, 23, 39)

2007-05-04 Thread Richard.Foster
Rene, Nested installs (running one MSI from within another) are not supported by Microsoft Installer. You need to use a bootstrapper. Check the archives of this mailing list for suggestions. Regards, Richard From: [EMAIL PROTECTED] [mailto:[EMAIL P

[WiX-users] Q: Nested Installation (CA 7, 23, 39)

2007-05-04 Thread Schrieken, Rene
Hi all, Is there a specific reason that you cann't author a nested installation (Custom Action 7, 23, 39) in Wix or is it just missing? I checked Compiler.cs in the 2.0 tree and I think I shoud be able to squeeze that in in ParseCustomActionElement but before getting my hands dirty I wonder if

Re: [WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread Rob Mensching
The problem with msizap is that it just nukes the Windows Installer knowledge of your product. You still have all your installed goo all over the place. Personally, I treat a machine that had msizap.exe run on it as a contaminated machine and will never use it for verifying installs after that

Re: [WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread Alex Steen
You are the freaking man. That did it. Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, May 04, 2007 1:34 PM To: Alex Steen; [EMAIL PROTECTED]; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Stuck with an uninstall that doesn't work? I

Re: [WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread Chris.Rowland
I'm not sure, but maybe it's trying to compare the property INSTALLUNINSTALL to the (nonexistent) property INSTALLER? Maybe you need INSTALLUNINSTALL="INSTALLER" -Original Message- From: Alex Steen [mailto:[EMAIL PROTECTED] Sent: Friday, May 04, 2007 2:26 PM To: Rowland, Chris; [EMAIL PR

Re: [WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread Alex Steen
One more thing I'm not getting and maybe this deserves its own thread, but I've got the following two CA's: INSTALLUNINSTALL=INSTALLER INSTALLUNINSTALL=UNINSTALLER In my log I see this line: MSI (s) (38:84) [13:20:49:941]: PROPERTY CHANGE: Modifying INSTALLUNINSTALL property. Its current value

Re: [WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread Alex Steen
Thanks Chris and Rob. For what it's worth, I was still having trouble using Rob's advice (although admittedly, I could have been messing it up myself somehow), but I used Chris' method and I'm back up and running. Thanks guys. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROT

Re: [WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread Chris.Rowland
I've also discovered that you can use msizap to force remove uninstallable applications. Msizap comes with the windows platform sdk and is used like so... msizap T {product code} Is using msiexec /fv the preferred method Rob? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL P

Re: [WiX-users] ServiceInstall error 1923

2007-05-04 Thread Rob Mensching
1923 is the generic error message you get when the service fails to install. The error message is basically useless. That makes debugging the ServiceInstall more painful than it should be. Quite often the problem is that the service has some dependency that isn't satisfied at the point of ins

Re: [WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread Rob Mensching
1. Build a fixed MSI. 2. Recache/reinstall the fixed MSI over top the busted installed MSI: msiexec /fv your.msi 3. Repeat 1 & 2 until MSI is fixed enough to happily uninstall. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JCWrs Sent: Friday, May

Re: [WiX-users] WiX v3 setupbld.exe question

2007-05-04 Thread Rob Mensching
Ahh, dude, your MSI (it does look like it is running the already installed version) is accessing that file for some reason and can't find it. Can't decipher much more than that from the log file. From: Jon LeCroy Sent: Friday, May 04, 2007 10:33 AM To: Rob Mensching; Alec Siu; wix-users@lists.s

[WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread JCWrs
So I ran my installer and all was well. On my attempt to uninstall, however, I run into an error. I understand why I'm getting the error and I'm pretty sure I can fix it, but because of it I can't uninstall the app. Everytime I try to re-run the installer (after I've made the changes to make su

Re: [WiX-users] ServiceInstall error 1923

2007-05-04 Thread Chris.Rowland
Did you run as an administrator? Error 1923 looks like a permissions problem. 1923: Service '[2]' ([3]) could not be installed. Verify that you have sufficient privileges to install system services. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On B

[WiX-users] ServiceInstall error 1923

2007-05-04 Thread fiordean dacian
Hi, I'm getting a 1923 error during a service install. The message displayed by Windows Installer is Here is the WiX source code: I can't see anything wrong with tag. Any ideas w

Re: [WiX-users] WiX v3 setupbld.exe question

2007-05-04 Thread Rob Mensching
What do you mean by the install "crashes with an error message"? Installations shouldn't crash. They may error out but crashing is a really scary thing. The best thing is to get the logging registry key set to get a log file for the A.msi. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [WiX-users] Where is Tallow for WiX 3?

2007-05-04 Thread jrcolons
S C-4 wrote: > > > I downloaded/installed Wix 3.0.2813 and don't see tallow, as far as I can > tell I need it to put together a large Web Application Project > distribution. > > Thanks. > > Heat is pretty good for harvesting large apps data (I harvested one with 50,000+ files) but I could

[WiX-users] Controlling feature selection by modifying the MSI

2007-05-04 Thread Rennie Petersen
I'm writing a little MSI Editor program. The idea is to provide our customers with something a bit more intuitive than Orca for modifying our MSIs before doing a group policies roll-out. My program has a customizable GUI that can resemble the user interface one sees if one does a non-silent instal