[WiX-users] WiX 3.0 wixca.dll QtExec

2006-12-20 Thread Lerudjordet, Morten Minge
Dont know if anybody answered this but here is some code... Shows how to run XmlPreprocess.exe by Loren Halvorson. In 3.0 they have moved the ca to the WixUtilExtension.dll so you need to add a refereance to it to be able to use WiXCA. I am assuming you are using the VS 2005 plugin, so just r

Re: [WiX-users] Need help to create a virtual directory

2006-11-10 Thread Lerudjordet, Morten Minge
ite. For example, if you put it under Product or Fragment and then use "Default Web Site" it'll find the default IIS web site and add your virtual under it instead of creating a new website on a new port. See the docs here for more info.   Regards, John 

[WiX-users] Bypass installUIsequence

2006-11-08 Thread Lerudjordet, Morten Minge
Title: Bypass installUIsequence Hi, just wondering if it is possible to bypass the install sequence when the product is installed, going through  the change / repair / remove screens. If I wanted just to do some maintanance on the installed product. Like changig some settings in existing fi

Re: [WiX-users] Need help to create a virtual directory

2006-11-08 Thread Lerudjordet, Morten Minge
If you do a search in the mailing list you will find the answers. I was not able to get you'r attached file, so I can't see where the problem is. Here is a sample of how you do it: Also remember to save the port number in registry or you will not be able to

Re: [WiX-users] Setting property value with another property value

2006-11-07 Thread Lerudjordet, Morten Minge
Minge Kopi: wix-users@lists.sourceforge.net Emne: Re: [WiX-users] Setting property value with another property value Lerudjordet, Morten Minge wrote: > As I explained previously I have the code up and running using a CA > with ExeCommand(both config files are installed): > CustomAction Id=&

Re: [WiX-users] Setting property value with another property value

2006-11-07 Thread Lerudjordet, Morten Minge
ld work to extract this dll from the V2 binaries? Thanks for all the help! It's kinda a slippery slope when one does not know the restrictions for using pre made CA's. morten -Opprinnelig melding- Fra: Bob Arnson [mailto:[EMAIL PROTECTED] Sendt: 7. november 2006 04:27 Til: Lerudjorde

Re: [WiX-users] nant task and WiX

2006-11-06 Thread Lerudjordet, Morten Minge
t; >Justin -Opprinnelig melding- Fra: Pawel Pabich [mailto:[EMAIL PROTECTED] Sendt: 6. november 2006 18:29 Til: Lerudjordet, Morten Minge Emne: RE: [WiX-users] nant task and WiX Thanks, but I need to be able to compile the setup projects from within Visual Studion .NET. Of course I can use

Re: [WiX-users] nant task and WiX

2006-11-06 Thread Lerudjordet, Morten Minge
In you'r msbuild file you can do something like this. morten Message: 5 Date: Mon, 6 Nov 2006 13:18:36 - From: "Pawel Pabich" <[EMAIL PROTECTED]> Subject: [WiX-users] nant task and WiX To: Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=

Re: [WiX-users] preprocessor variable $(var.Build)

2006-11-06 Thread Lerudjordet, Morten Minge
To get wix to use the var it has to run in the context where the $(ConfigurationName) is set (candle compile). You then compile wixobj with: candle.exe -dMyVar = $(ConfigurationName)... Then you should be able to access the $(var.MyVar) in the wix code. Usually this is set up in a msbuld script

Re: [WiX-users] Setting property value with another property value

2006-11-06 Thread Lerudjordet, Morten Minge
: CAQuietExec, library: C:\DOCUME~1\bak8549\LOCALS~1\Temp\2\MSI6.tmp Action ended 10:38:36: QtExec. Return value 3. DEBUG: Error 2896: Executing action QtExec failed. Fra: Rob MacFadyen [mailto:[EMAIL PROTECTED] Sendt: 4. november 2006 14:17 Til: Lerudjordet, Morten Minge

Re: [WiX-users] Setting property value with another property value

2006-11-06 Thread Lerudjordet, Morten Minge
Title: Setting property value with another property value Thanks for all the answers!   Ok, so the gist of it is; when setting a property with another property's value use a custom action. So all that is left is to schedule the CA at button push.   But the code below does not seem to work, i

[WiX-users] Setting property value with another property value

2006-11-04 Thread Lerudjordet, Morten Minge
Title: Setting property value with another property value Hi, I have a little problem trying to do this the right way. Because I get a warning compiling when a property value is set to [FILEPATH] and [INSTALLPATH][WEBCONFIGFILE]. The warning message hint that one should set this using a cu

[WiX-users] Wixca and V3

2006-11-03 Thread Lerudjordet, Morten Minge
Title: Wixca and V3 Just wondering if wixca has been removed in v3, if so how does one  use CAQuietExec? Morten - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with

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

Re: [WiX-users] Moving from Wix V2 to V3

2006-10-30 Thread Lerudjordet, Morten Minge
Title: RE: Moving from Wix V2 to V3 Take a look at wixcop.exe in V3. Just remember you have to use -f extension for it to fix the errors it finds in you'r V2 files. Morten - Using Tomcat but need to do more? Need to s

Re: [WiX-users] Question about UtilExtension

2006-10-30 Thread Lerudjordet, Morten Minge
Title: Question about UtilExtension Ah, ok I found it in the binaries zip, but it looks like it's not in the Wix3.msi for 3.0.2218.   Morten Fra: Mike Dimmick [mailto:[EMAIL PROTECTED] Sendt: 28. oktober 2006 17:40Til: Lerudjordet, Morten Minge; wix-

[WiX-users] Question about UtilExtension

2006-10-28 Thread Lerudjordet, Morten Minge
Title: Question about UtilExtension Hi, was just wondering if the plan with the utilextension is to pull this out into a util.xsd file in V3? As the other extensions like iis has their own .xsd files. For others who want to add intellisense for XMLFile this is how to do it: 1. Created

Re: [WiX-users] Populate ComboBox from managed code using Custom

2006-10-27 Thread Lerudjordet, Morten Minge
Title: Re: Populate ComboBox from managed code using Custom Sorry, forgot the important sub that inserts the value into the installer database :) Sub AddToComboBox( ByVal sComboProp, ByVal iComboOrder, ByVal sComboValue, ByVal sComboText )     ' This function takes values passed into it f

Re: [WiX-users] Populate ComboBox from managed code using Custom

2006-10-27 Thread Lerudjordet, Morten Minge
Title: Re: Populate ComboBox from managed code using Custom Here is something I compilated from others contributing in this list. Function GetWebSites( )     Dim oThisServer, oWebsite     Dim intI     On Error Resume Next     Set oThisServer = GetObject( "IIS://localhost/W3SVC" )   

[WiX-users] CA and publish

2006-10-27 Thread Lerudjordet, Morten Minge
Title: CA and publish Hi, I have tied a publis of a DoACtion to a Next button that works fine. My Question is:     When going back from the next window, and pressing the next button on the dlg with the action again it does not seem to run the action. Is this by design or am I mis

[WiX-users] New Votive VS2005

2006-10-27 Thread Lerudjordet, Morten Minge
Title: New Votive VS2005 I have been using the new Votive for some time now, and I must say THANK YOU! Have not found any show stopping bugs yet, and being able to build and use intellisense is so much more productive. Had to do some tweaking to get intellisense for the extensions, but it

Re: [WiX-users] Populate ComboBox from managed code using Custom

2006-10-26 Thread Lerudjordet, Morten Minge
Title: RE: Populate ComboBox from managed code using Custom I have also looked into making managed dll's for custom actions. It can be done (with hacks) if we could find some way to access the session object of the installer at runtime. _vbscript_ has the session object that opens up calling

Re: [WiX-users] VBScript and ComboBox

2006-10-26 Thread Lerudjordet, Morten Minge
, Morten MingeKopi: wix-users@lists.sourceforge.netEmne: Re: [WiX-users] _vbscript_ and ComboBox Lerudjordet, Morten Minge wrote: I already use this in my wix code, but trying to access the installer database from external code I don't seem to find this property.Ar

Re: [WiX-users] VBScript and ComboBox

2006-10-25 Thread Lerudjordet, Morten Minge
users] _vbscript_ and ComboBox Lerudjordet, Morten Minge wrote: I already use this in my wix code, but trying to access the installer database from external code I don't seem to find this property.Are you trying to access the property from a deferred cus

Re: [WiX-users] VBScript and ComboBox

2006-10-25 Thread Lerudjordet, Morten Minge
nswer!    Morten Fra: Bob Arnson [mailto:[EMAIL PROTECTED] Sendt: 24. oktober 2006 22:58Til: Lerudjordet, Morten MingeKopi: wix-users@lists.sourceforge.netEmne: Re: [WiX-users] _vbscript_ and ComboBox Lerudjordet, Morten Minge wrote: But what I'm asking

Re: [WiX-users] VBScript and ComboBox

2006-10-24 Thread Lerudjordet, Morten Minge
Title: RE: VBScript and ComboBox So I see some errors in my script, ("SELECT * FROM `ComboBox` WHERE `Property` = 'TARGETWEBCOMBO' AND `Order` = 'sResult'") should be ("SELECT * FROM `ComboBox` WHERE `Property` = 'TARGETWEBCOMBO' AND `Order` = '" & sResult & "'") But what I'm asking is i

Re: [WiX-users] Web Application Pool

2006-10-24 Thread Lerudjordet, Morten Minge
Title: Re: Web Application Pool What about saving a registry key for each Web Component where the AppPool name is stored. On an upgrade a registry search for the key can be done and used to put it in the correct pool. Dunno if this viable, just an idea. Morten --

Re: [WiX-users] Votive3... uhm... am I missing something?

2006-10-24 Thread Lerudjordet, Morten Minge
Title: RE: Votive3... uhm... am I missing something? I also had this problem installing an earlier version of Votive. In the end I removed VS and reinstalled it, have not had any problems since with  the new build of Votive in Wix3.msi. Morten

[WiX-users] VBScript and ComboBox

2006-10-24 Thread Lerudjordet, Morten Minge
Title: VBScript and ComboBox Hi, I have a ComboBox that is populated by websites installed on a given server (_vbscript_). Choosing the preferred site in the combobox I want a script to "read" this value and get all site info (port, IP..) Is this possible? I tried accessing the propert

Re: [WiX-users] Combobox & websites

2006-10-06 Thread Lerudjordet, Morten Minge
Til: Lerudjordet, Morten Minge; wix-users@lists.sourceforge.net Emne: RE: [WiX-users] Combobox & websites Morten: What are you trying to do specifically? We install WebSites & WebAppPools based upon the results of checkboxes (checked value controls feature option that is selected for

[WiX-users] Combobox & websites

2006-10-05 Thread Lerudjordet, Morten Minge
Title: Combobox & websites Hi! Was wondering if anybody out there has played around with comboboxes and extracting the field based on user selection. I have a script that populates both websites and application pools to a combobox, and based on the user selection populate the given websit

Re: [WiX-users] Bit of a twist

2006-09-06 Thread Lerudjordet, Morten Minge
Title: Re: [WiX-users] Bit of a twist Thanks Rob for the script! The reason I say it's messy is because it if one wants to add different functionality not supported by native WiX one needs to add another script…then another and so on. For just solving one problem it's fine, fore more it sta

[WiX-users] Bit of a twist

2006-09-05 Thread Lerudjordet, Morten Minge
Title: Bit of a twist Hi, been fooling around with the IIS extension a couple of days. I found out that I needed to be able to give the user a choose of Website to install to, just so no typing error can occur. As I did not find any extensions that can be used to read the state of the IIS

[WiX-users] Passing multiple vars to candle

2006-09-01 Thread Lerudjordet, Morten Minge
Title: Passing multiple vars to candle Hi, I was wondering if it is possible to pass more than one variable to candle via the d switch. I know one can use the -d multiple times, but what I'm looking fore is more like passing a file with the vars defined in it. I'm working towards a low ma

[WiX-users] (no subject)

2006-08-30 Thread Lerudjordet, Morten Minge
- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache