[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. Property Id=QtExecCmdLine Value=1/ CustomAction Id=Set_QtExecCmdLine Property=QtExecCmdLine Value =quot;[#XMLParser]quot; /i quot;[#ConfigFile]quot; /s

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

2006-11-10 Thread Lerudjordet, Morten Minge
he 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 On 11/8/06, Lerudjordet, Morten Minge [EMAIL PROTECTED] wrote: If you do a search in the mailing list you will find

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

2006-11-07 Thread Lerudjordet, Morten Minge
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: Lerudjordet, Morten Minge Kopi: wix

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

2006-11-06 Thread Lerudjordet, Morten Minge
: Lerudjordet, Morten Minge Emne: RE: [WiX-users] Setting property value with another property value Morten, I think what you need is: property id=QtExecCmdLine / CustomAction Id=Set_QtExecCmdLine Property=QtExecCmdLine

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

Re: [WiX-users] msbuild nant task and WiX

2006-11-06 Thread Lerudjordet, Morten Minge
In you'r msbuild file you can do something like this. Target Name=MakeMSI Exec Command=candle.exe -out DestOfWiXObjFiles\Product.wixobj Product.wxs/Exec Exec Command=light.exe -out DestFolderOfMSI\MyProdctName.msi Product.wixobj +ALL OTHER WIXOBJ files you need -loc WixUI_en-us.wxl/Exec

Re: [WiX-users] msbuild nant task and WiX

2006-11-06 Thread Lerudjordet, Morten Minge
- Fra: Pawel Pabich [mailto:[EMAIL PROTECTED] Sendt: 6. november 2006 18:29 Til: Lerudjordet, Morten Minge Emne: RE: [WiX-users] msbuild 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 your script with Nant

[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

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

[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

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

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 ) If(

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

Re: [WiX-users] VBScript and ComboBox

2006-10-26 Thread Lerudjordet, Morten Minge
] _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 tofind this property.Are you trying to access the property from a deferred custom action

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 tofind this property.Are you

Re: [WiX-users] VBScript and ComboBox

2006-10-25 Thread Lerudjordet, Morten Minge
on [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 is if there is a way to access the combobox

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

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

[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

Re: [WiX-users] Bit of a twist

2006-09-07 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 scriptthen another and so on. For just solving one problem it's fine, fore more it

[WiX-users] Bit of a twist

2006-09-06 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