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 virtu

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

2006-11-01 Thread Rai Wasif
so told me how to remove the dependency of .net framework(MSVCRT)- Original Message From: Rai Wasif <[EMAIL PROTECTED]>To: wix-users@lists.sourceforge.net; wix-devs mailingList Sent: Thursday, November 2, 2006 10:35:20 AMSubject: Re: [WiX-users] Problem in installing msi on XpActually where

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

2006-11-01 Thread Anton Filippov
I think, that works, If property set in LaunchCondition section. If I set this property from checkbox, for example, during installation sequnce - this not work. Code: NOT KeepOldReg KeepOldReg property set through checkbox in SelectionTree dialog. Anton. On 11/2/06, sbarry <[EMAIL

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] 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: [W

[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 se

[WiX-users] UIExtension.build in WiX 3.0

2006-11-01 Thread anwer nehal
Hi everyone I added a few dialogs to the Wixui in wix 3.0 and have been trying to re-compile the UIExtension, but I get the following error. Anyone know how to take care of this? I have already installed VS SDK 2005: C:\WiX3\src\ext\UIExtension>nant UIExtension.build -D:dir.root=C:\WiX3 NAnt

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

2006-11-01 Thread sbarry
Just stick all the registry key removals in a component that is conditional based on your property being set. YOUR_PROPERTY -- View this message in context: http://www.nabble.com/How-to-remove-reg-keys-by-condition--tf2551738.html#a7

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. DanaSe

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 P

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.4322 with a MinVersion of 1.1.4322.2299 (1.1S

[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 two different localized version of the product on the same OS.  What if we don't allow two different loca

[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.    

[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

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 don’t 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 xmlns:util='http

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

2006-11-01 Thread John Watson
Hi Robson,   Did you add a link to wixca.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 Extended

[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.        

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 > > > --

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] 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

[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

[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 element and some conditional statements? I can't find some conditionals samples for registry. Anton. -

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

2006-11-01 Thread Lerudjordet, Morten Minge
Title: RE: WebSite install on different site     This will install the component for the site with portnumber 80, this is usually Default Web Site. If you want to install to a different site you have to set it's port number in Port="Port number of site you want to install to