[WiX-users] How to remove reg keys by condition?

2006-11-01 Thread Anton Filippov
Hi Previous install system (NSIS) set some reg keys. I should remove it, If I'll find keys and If when my property is set. Can I do that without CA (type 1, 2, 17, 18)? Maybe through Registry element and some conditional statements? I can't find some conditionals samples for registry. Anton.

[WiX-users] Problem in installing msi on Xp

2006-11-01 Thread Rai Wasif
Hi all, i had build msi on window 2000. it installed right on 2000, but in xp where i call any first dll function it crashed. what is the reason behind dat?thanx in advanceRegardsRai Wasif- Using Tomcat but need to do more?

Re: [WiX-users] WebSite install on different site

2006-11-01 Thread david adams
Fitims: I suspect that your Default Web Site (even though stopped) is configured to use IP: All Unassigned and Port: 80. Your problem is coming from the way the IIS works (which I don't fully understand). Here is how I think that this really happens. IIS associates Websites to its meta-table

Re: [WiX-users] Digitally Signing large Cab files (OT?)

2006-11-01 Thread Jim Snider
They were not able to provide much help with the problem. I was referencing SignTool that comes with VS 2005 in the email I sent them. Their response was: In response to your email, we know of no restrictions on file size regarding Microsoft's latest Signing tools. However seeing as you're

Re: [WiX-users] Problem in installing msi on Xp

2006-11-01 Thread Rob Hamflett
Did msiexec crash or was it your DLL? Rob Rai Wasif wrote: Hi all, i had build msi on window 2000. it installed right on 2000, but in xp where i call any first dll function it crashed. what is the reason behind dat? thanx in advance Regards Rai Wasif

[WiX-users] Using the Permission element in Wix 3

2006-11-01 Thread Robson King
So I am trying to set the folder permissions to allow my webservice to write entries to the log file. Directory Id =logs Name= logs Component Id=logs DiskId=1 Guid=9496769F-B9DF-4113-AB79-43794753D1D1 CreateFolder Directory=logs Permission User=ASPNET Extended=yes/

Re: [WiX-users] Using the Permission element in Wix 3

2006-11-01 Thread John Watson
Hi Robson, Did you add a link towixca.wixlib in your light command? It's not glaringly obvious from the docs here (buried in discussion of a single attribute) but without Extended=yes WiX will just write the entries to the LockPermissions MSI table and be done with it. If you specify

Re: [WiX-users] Using the Permission element in Wix 3

2006-11-01 Thread Robson King
I am trying to use Wix from inside of Votive. So I dont think that there is anywhere where I can specify a link to wixca.wixlib? I read something that the WiX SecureObject was included in the WixUtilExtension. So I included a reference to WixUtilExtension and added

[WiX-users] How to check if ASP.NET is enabled?

2006-11-01 Thread Rob MacFadyen
Hey all, Does anyone know how to check if ASP.NET 2.0 is _enabled_? Right now I'm always doing an aspnet_regiis -i... but this is taking maybe 10 seconds... which seems like a waste if ASP.NET is _already_ enabled. Picky picky... but after testing and testing and testing any time savings would

[WiX-users] Check for .NET Framework 1.1 SP1 before install

2006-11-01 Thread Jonas Abrams
Hey everyone, I am trying to force my install to check and make sure Service Pack 1 for the .NET Framework 1.1 is installed before it is able to run. Currently I have a check for .NET Framework 1.1 (see code below) but I have not been able to figure out how to check for SP1. !-- Don't

[WiX-users] Why we need to have diferent product codes for localized version of the product?

2006-11-01 Thread Leo ...
What is the the primary reason for having a different product code for different localized versions of the same product? I could understand that it is reasonable to do that so you can install twodifferent localized version of the product on the same OS. What if we don't allow two different

Re: [WiX-users] Check for .NET Framework 1.1 SP1 before install

2006-11-01 Thread Wilson, Phil
I believe this is the "official" registry key for SP1: http://blogs.msdn.com/astebner/archive/2004/09/14/229574.aspx I suspect an MSI file search is somewhat easier. A search for mscorlib.dll in [WindowsFolder]Microsoft.NET\Framework\v1.1.4322with a MinVersion of 1.1.4322.2299 (1.1SP1

Re: [WiX-users] Check for .NET Framework 1.1 SP1 before install

2006-11-01 Thread Cullen Waters
The VisualStudio extension should have all the checks you need for every version of the framework that has been shipped. Did you check out those elements first? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil Sent: Wednesday, November 01, 2006 1:13 PM

Re: [WiX-users] How to check if ASP.NET is enabled?

2006-11-01 Thread Dana Gutride
You can write a custom action that checks the metabase for that. I'll attach a snippet of vbs that you convert to c++ if you'd like. One thing to keep in mind, I'm pretty sure this property doesn't exist on Windows 2000 or XP (IIS 6 only), so I'd be careful in scheduling the custom action. DanaSet

[WiX-users] WiX Build

2006-11-01 Thread anwer nehal
Hi everyone I get the following error when I try to do make ship on WiX 3. Any recommendations are appreciated. BUILD FAILED - 1 non-fatal error(s), 0 warning(s) C:\WixSource\src\light\light.build(58,6): Could not find file 'C:\WixSource\src\light\bin\darice.cub' to copy. Total time: 2.4

Re: [WiX-users] Problem in installing msi on Xp

2006-11-01 Thread Rai Wasif
the msiexec crash not dll. as dll function execute fine in win2000. the last screen that i receive is "the prog prematurely crashed"- Original Message From: Rob Hamflett [EMAIL PROTECTED]To: wix-users@lists.sourceforge.netSent: Wednesday, November 1, 2006 9:43:08 PMSubject: Re:

Re: [WiX-users] Problem in installing msi on Xp

2006-11-01 Thread Rai Wasif
Actually where .net framework isn't installed it crashed at dat point i.e. where i call dll.i build dll in C++- Original Message From: Rai Wasif [EMAIL PROTECTED]To: Rob Hamflett [EMAIL PROTECTED]; wix-users@lists.sourceforge.netSent: Thursday, November 2, 2006 10:11:08 AMSubject: Re:

Re: [WiX-users] How to check if ASP.NET is enabled?

2006-11-01 Thread Rob MacFadyen
Dana, Thanks for that :) It wasn't exactly what I was looking for... but it did point out that what I was doing with aspnet_regiis was too extreme. Just doing an "aspnet_regiis -i" affects all websites all virtual directories... which isn't what I want at all... I want just a single