We approach the problem from a little different perspective. Instead of using a combo box / selection functionality within the UI, we set up multiple web site / web application components and features and have Admins (who perform installs in our environment) select which one they choose.
In our case, there is a web site / web application component & feature for each environment into which the application will be installed. The IP address & Port values are property values defined in an application-specific WXS file while the actual component & features are defined in a common WXS file that each application "inherits" as a fragment. >From the installers perspective, they select which one to install from the [Select Features] dialog. We are building installs for internally developed and utilized applications (not commercial) so we know the IP addresses and Ports as a function of our design. We usually have four possible environments into which an application is being loaded (Dev, Test, QA, or Production) & our features easily allow the installers (who do not need to know or understand anything about our apps) to select and install to the appropriate environment. I do not know if this type of model would meet your needs, but if you need more specifics, let me know. David Adams MSN MessengerID: [EMAIL PROTECTED] >From: "John Hidey" <[EMAIL PROTECTED]> >To: <wix-users@lists.sourceforge.net> >Subject: [WiX-users] WebSites in ComboBox dynamically >Date: Tue, 11 Jul 2006 13:32:27 -0400 >MIME-Version: 1.0 >Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by >bay0-mc7-f3.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Tue, 11 >Jul 2006 10:33:30 -0700 >Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93])by >sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 8A88712EDD; Tue, 11 Jul >2006 10:33:19 -0700 (PDT) >Received: from sc8-sf-mx2-b.sourceforge.net >([10.3.1.92]helo=mail.sourceforge.net)by sc8-sf-list1-new.sourceforge.net >with esmtp (Exim 4.43)id 1G0M6n-0002zj-Tkfor >wix-users@lists.sourceforge.net; Tue, 11 Jul 2006 10:33:18 -0700 >Received: from mail1.servicelinklp.com >([12.169.126.62]helo=pitmxp01.servicelink.com)by mail.sourceforge.net with >esmtp (Exim 4.44) id 1G0M6n-0001UW-9dfor wix-users@lists.sourceforge.net; >Tue, 11 Jul 2006 10:33:17 -0700 >Received: from CLUPITEXC01.servicelink.com ([10.220.1.81]) >bypitmxp01.servicelink.com with Microsoft SMTPSVC(6.0.3790.211); Tue, 11 >Jul 2006 13:35:04 -0400 >X-Message-Info: txF49lGdW43/Eo6ao/OqPsXMPCw+sVukMfxVohfmVkg= >Content-class: urn:content-classes:message >X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 >X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: WebSites in ComboBox >dynamically >thread-index: AcalD/rgGTyN1HGhRFOXsiovXAUDOQ== >X-OriginalArrivalTime: 11 Jul 2006 17:35:04.0437 >(UTC)FILETIME=[58320250:01C6A510] >X-BeenThere: wix-users@lists.sourceforge.net >X-Mailman-Version: 2.1.8 >Precedence: list >List-Id: "General discussion for Windows Installer XML >toolset."<wix-users.lists.sourceforge.net> >List-Unsubscribe: ><https://lists.sourceforge.net/lists/listinfo/wix-users>,<mailto:[EMAIL >PROTECTED]> >List-Archive: ><http://sourceforge.net/mailarchive/forum.php?forum=wix-users> >List-Post: <mailto:wix-users@lists.sourceforge.net> >List-Help: <mailto:[EMAIL PROTECTED]> >List-Subscribe: ><https://lists.sourceforge.net/lists/listinfo/wix-users>,<mailto:[EMAIL >PROTECTED]> >Errors-To: [EMAIL PROTECTED] >Return-Path: [EMAIL PROTECTED] > >-All- > > > >I apologize for posting this if it has been answered several times but I >am unable to get this working. I am trying to display on the web sites >in a combobox in the ui. I have done everything that I can think of, >but I am a far cry from being a wix expert. If anyone could point me to >why I keep getting a error dialog showing an error 2205 it would be >greatly appreciated. > > > >Also, if I am doing this completely wrong please tell me so. I will not >take offence to any comment. I'm coming to you guys for help so I will >accept all help. > > > >Thanks so much everyone in advance. I'm trying to learn this stuff but >having some issues with some of the concepts, with the help of everyone >I'm sure I'll get it in time. > > > >Thanks > >John > > > > > >Here is the properties which I have in my wxs file. > > > ><Property Id="TARGETWEBCOMBO" /> > ><Property Id="TARGETWEBCOMBO2"> > > <RegistrySearch Id="FindTargetWeb" Type="raw" Root="HKLM" >Key="Software\ServiceLink\ServiceLink Enterprise Library" >Name="TARGETWEBCOMBO" /> > ></Property> > > > >Here is my custom actions and install sequences > > > ><CustomAction BinaryKey="GETSITESSCRIPT" Execute="firstSequence" >Id="caGetWebSites" VBScriptCall="GetWebSites" Return="check" /> > ><Binary Id="GETSITESSCRIPT" SourceFile="..\..\..\Program >Files\WixEdit\scripts\GetWebSites.vbs" /> > ><InstallExecuteSequence> > > <Custom Action="caGetWebSites" Sequence="2" /> > ></InstallExecuteSequence> > > > >Here is my ONLY combobox on the form > > > ><Control Id="WebSites" Type="ComboBox" Sorted="no" >Property="TARGETWEBCOMBO" Indirect="no" ComboList="yes" X="20" Y="72" >Width="330" Height="16"> > > <Text><![CDATA[TARGETWEBCOMBO]]></Text> > ></Control> > > > >Here is the script that I am using for populating the combobox > > > >'======================================================================= >==== > >' This Script Populates a ComboBox in the Windows Installer with the > >' available IIS Websites in the local computer > >'======================================================================= >==== > > Const ERROR_SUCCESS = 0 > > Const ERROR_INSTALL_FAILURE = 1603 > > Const msiViewModifyInsertTemporary = 7 > > > > Function GetWebSites() > > Dim objIIS, oView, oSite, oServer, oReccombo > > Dim r > > > > On Error Resume Next > > Set objIIS = GetObject("IIS://localhost/W3SVC") > > > > If Err.Number <> 0 Then > > MsgBox "Unable to open IIS W3SVC Root object - " & _ > > "please ensure that IIS is running" & vbCrLf & _ > > " - Error Details: " & Err.Description & " [Number:" & _ > > Hex(Err.Number) & "]", vbCritical, "Error" > > GetWebSites = ERROR_INSTALL_FAILURE > > Exit Function > > Else > > 'open and execute a view to the ListBox table > > Set oView = Session.Database.OpenView("SELECT * FROM >'ComboBox'") > > Set oPropertyView = Session.Database.OpenView("SELECT * FROM >`Property` WHERE [Property] ='TARGETWEBCOMBO'") > > oView.Execute > > oPropertyView.Execute > > oPropertyView.Fetch > > r = 0 > > > > For Each oSite in objIIS > > If oSite.Class = "IIsWebServer" Then > > r = r + >1 > > Set oServer=GetObject(oSite.ADsPath) > > 'if r = 1 Then > > >Session.Property("TARGETWEBCOMBO")= oSite.Name > > >Session.Property("SERVERCOMMENT") = oServer.Get("ServerComment") > > 'End if > > ' > > ' ComboBox record fields are Property, >Order, Value, Text > > ' > > Set oReccombo = Session.Installer.CreateRecord(4) > > oReccombo.StringData(1) = "TARGETWEBCOMBO" > > oReccombo.IntegerData(2) = r > > oReccombo.StringData(3) = oSite.Name > > ' oReccombo.StringData(3) = >oServer.Get("ServerComment") > > oReccombo.StringData(4) = oServer.Get("ServerComment") > > oView.Modify msiViewModifyInsertTemporary, oReccombo > > > > End If > > Next > > > > oView.Close > > 'return success to MSI > > GetWebSites = ERROR_SUCCESS > > End If > > 'clean up > > Set objIIS = Nothing > > Set oView = Nothing > > End Function > > > > > >Here is the verbose log file when running the MSI > > > >=== Verbose logging started: 7/11/2006 9:53:20 Build type: SHIP >UNICODE 3.01.4000.2435 Calling process: C:\WINDOWS\system32\msiexec.exe >=== > >MSI (c) (EC:3C) [09:53:20:650]: Resetting cached policy values > >MSI (c) (EC:3C) [09:53:20:650]: Machine policy value 'Debug' is 0 > >MSI (c) (EC:3C) [09:53:20:650]: ******* RunEngine: > > ******* Product: ServiceLink Enterprise Library 2.0.msi > > ******* Action: > > ******* CommandLine: ********** > >MSI (c) (EC:3C) [09:53:20:680]: Machine policy value >'DisableUserInstalls' is 0 > >MSI (c) (EC:3C) [09:53:20:981]: SOFTWARE RESTRICTION POLICY: Verifying >package --> 'C:\Projects\Installs\ServiceLink Enterprise >Library\ServiceLink Enterprise Library 2.0.msi' against software >restriction policy > >MSI (c) (EC:3C) [09:53:20:981]: Note: 1: 2262 2: DigitalSignature 3: >-2147287038 > >MSI (c) (EC:3C) [09:53:20:981]: SOFTWARE RESTRICTION POLICY: >C:\Projects\Installs\ServiceLink Enterprise Library\ServiceLink >Enterprise Library 2.0.msi is not digitally signed > >MSI (c) (EC:3C) [09:53:21:021]: SOFTWARE RESTRICTION POLICY: >C:\Projects\Installs\ServiceLink Enterprise Library\ServiceLink >Enterprise Library 2.0.msi is permitted to run at the 'unrestricted' >authorization level. > >MSI (c) (EC:3C) [09:53:21:122]: Cloaking enabled. > >MSI (c) (EC:3C) [09:53:21:122]: Attempting to enable all disabled >priveleges before calling Install on Server > >MSI (c) (EC:3C) [09:53:21:202]: End dialog not enabled > >MSI (c) (EC:3C) [09:53:21:202]: Original package ==> >C:\Projects\Installs\ServiceLink Enterprise Library\ServiceLink >Enterprise Library 2.0.msi > >MSI (c) (EC:3C) [09:53:21:202]: Package we're running from ==> >C:\DOCUME~1\jhidey\LOCALS~1\Temp\3\1c6a431d.msi > >MSI (c) (EC:3C) [09:53:21:222]: APPCOMPAT: looking for appcompat >database entry with ProductCode >'{52636052-D6D8-42D5-8A56-C4E51F61AD04}'. > >MSI (c) (EC:3C) [09:53:21:222]: APPCOMPAT: no matching ProductCode found >in database. > >MSI (c) (EC:3C) [09:53:21:242]: MSCOREE not loaded loading copy from >system32 > >MSI (c) (EC:3C) [09:53:21:302]: Machine policy value 'TransformsSecure' >is 1 > >MSI (c) (EC:3C) [09:53:21:302]: Note: 1: 2205 2: 3: MsiFileHash > >MSI (c) (EC:3C) [09:53:21:302]: Machine policy value 'DisablePatch' is 0 > >MSI (c) (EC:3C) [09:53:21:302]: Machine policy value >'AllowLockdownPatch' is 0 > >MSI (c) (EC:3C) [09:53:21:302]: Machine policy value >'DisableLUAPatching' is 0 > >MSI (c) (EC:3C) [09:53:21:313]: Machine policy value >'DisableFlyWeightPatching' is 0 > >MSI (c) (EC:3C) [09:53:21:323]: APPCOMPAT: looking for appcompat >database entry with ProductCode >'{52636052-D6D8-42D5-8A56-C4E51F61AD04}'. > >MSI (c) (EC:3C) [09:53:21:323]: APPCOMPAT: no matching ProductCode found >in database. > >MSI (c) (EC:3C) [09:53:21:323]: Transforms are not secure. > >MSI (c) (EC:3C) [09:53:21:323]: Command Line: >CURRENTDIRECTORY=C:\Projects\Installs\ServiceLink Enterprise Library >CLIENTUILEVEL=0 CLIENTPROCESSID=2540 > >MSI (c) (EC:3C) [09:53:21:323]: PROPERTY CHANGE: Adding PackageCode >property. Its value is '{AD129B1D-17F3-4BC0-8B9C-C2C4D4E4F97D}'. > >MSI (c) (EC:3C) [09:53:21:323]: Product Code passed to >Engine.Initialize: '' > >MSI (c) (EC:3C) [09:53:21:323]: Product Code from property table before >transforms: '{52636052-D6D8-42D5-8A56-C4E51F61AD04}' > >MSI (c) (EC:3C) [09:53:21:323]: Product Code from property table after >transforms: '{52636052-D6D8-42D5-8A56-C4E51F61AD04}' > >MSI (c) (EC:3C) [09:53:21:323]: Product not registered: beginning >first-time install > >MSI (c) (EC:3C) [09:53:21:323]: PROPERTY CHANGE: Adding ProductState >property. Its value is '-1'. > >MSI (c) (EC:3C) [09:53:21:323]: Entering >CMsiConfigurationManager::SetLastUsedSource. > >MSI (c) (EC:3C) [09:53:21:323]: User policy value 'SearchOrder' is 'nmu' > >MSI (c) (EC:3C) [09:53:21:323]: Adding new sources is allowed. > >MSI (c) (EC:3C) [09:53:21:323]: PROPERTY CHANGE: Adding >PackagecodeChanging property. Its value is '1'. > >MSI (c) (EC:3C) [09:53:21:323]: Package name extracted from package >path: 'ServiceLink Enterprise Library 2.0.msi' > >MSI (c) (EC:3C) [09:53:21:323]: Package to be registered: 'ServiceLink >Enterprise Library 2.0.msi' > >MSI (c) (EC:3C) [09:53:21:323]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:3C) [09:53:21:323]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:323]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:333]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:333]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:353]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:353]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:353]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:353]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:363]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:363]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:363]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:373]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:373]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:373]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:373]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:383]: Note: 1: 2729 > >MSI (c) (EC:3C) [09:53:21:383]: Note: 1: 2262 2: AdminProperties 3: >-2147287038 > >MSI (c) (EC:3C) [09:53:21:383]: Machine policy value 'DisableMsi' is 1 > >MSI (c) (EC:3C) [09:53:21:383]: Machine policy value >'AlwaysInstallElevated' is 0 > >MSI (c) (EC:3C) [09:53:21:383]: User policy value >'AlwaysInstallElevated' is 0 > >MSI (c) (EC:3C) [09:53:21:383]: Running product >'{52636052-D6D8-42D5-8A56-C4E51F61AD04}' with user privileges: It's not >assigned. > >MSI (c) (EC:3C) [09:53:21:383]: PROPERTY CHANGE: Adding CURRENTDIRECTORY >property. Its value is 'C:\Projects\Installs\ServiceLink Enterprise >Library'. > >MSI (c) (EC:3C) [09:53:21:383]: PROPERTY CHANGE: Adding CLIENTUILEVEL >property. Its value is '0'. > >MSI (c) (EC:3C) [09:53:21:383]: PROPERTY CHANGE: Adding CLIENTPROCESSID >property. Its value is '2540'. > >MSI (c) (EC:3C) [09:53:21:383]: TRANSFORMS property is now: > >MSI (c) (EC:3C) [09:53:21:383]: PROPERTY CHANGE: Adding VersionDatabase >property. Its value is '300'. > >MSI (c) (EC:3C) [09:53:21:413]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Application Data > >MSI (c) (EC:3C) [09:53:21:413]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Favorites > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\NetHood > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\My Documents > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\PrintHood > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Recent > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\SendTo > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Templates > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\All Users\Application Data > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Local Settings\Application Data > >MSI (c) (EC:3C) [09:53:21:423]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\My Documents\My Pictures > >MSI (c) (EC:3C) [09:53:21:493]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Start Menu\Programs\Administrative >Tools > >MSI (c) (EC:3C) [09:53:21:493]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Start Menu\Programs\Startup > >MSI (c) (EC:3C) [09:53:21:493]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Start Menu\Programs > >MSI (c) (EC:3C) [09:53:21:493]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Start Menu > >MSI (c) (EC:3C) [09:53:21:493]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\jhidey\Desktop > >MSI (c) (EC:3C) [09:53:21:503]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\All Users\Start Menu\Programs\Administrative >Tools > >MSI (c) (EC:3C) [09:53:21:503]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\All Users\Start Menu\Programs\Startup > >MSI (c) (EC:3C) [09:53:21:503]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\All Users\Start Menu\Programs > >MSI (c) (EC:3C) [09:53:21:503]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\All Users\Start Menu > >MSI (c) (EC:3C) [09:53:21:503]: SHELL32::SHGetFolderPath returned: >C:\Documents and Settings\All Users\Desktop > >MSI (c) (EC:3C) [09:53:21:503]: SHELL32::SHGetFolderPath returned: >C:\WINDOWS\Fonts > >MSI (c) (EC:3C) [09:53:21:513]: Note: 1: 2898 2: MS Sans Serif 3: MS >Sans Serif 4: 0 5: 16 > >MSI (c) (EC:3C) [09:53:21:543]: PROPERTY CHANGE: Adding Privileged >property. Its value is '1'. > >MSI (c) (EC:3C) [09:53:21:543]: Note: 1: 1402 2: >HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 > >MSI (c) (EC:3C) [09:53:21:543]: PROPERTY CHANGE: Adding USERNAME >property. Its value is 'ServiceLink LP'. > >MSI (c) (EC:3C) [09:53:21:543]: Note: 1: 1402 2: >HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 > >MSI (c) (EC:3C) [09:53:21:543]: PROPERTY CHANGE: Adding COMPANYNAME >property. Its value is 'ServiceLink LP'. > >MSI (c) (EC:3C) [09:53:21:543]: PROPERTY CHANGE: Adding DATABASE >property. Its value is >'C:\DOCUME~1\jhidey\LOCALS~1\Temp\3\1c6a431d.msi'. > >MSI (c) (EC:3C) [09:53:21:543]: PROPERTY CHANGE: Adding OriginalDatabase >property. Its value is 'C:\Projects\Installs\ServiceLink Enterprise >Library\ServiceLink Enterprise Library 2.0.msi'. > >MSI (c) (EC:3C) [09:53:21:553]: PROPERTY CHANGE: Adding SourceDir >property. Its value is 'C:\Projects\Installs\ServiceLink Enterprise >Library\'. > >MSI (c) (EC:3C) [09:53:21:553]: PROPERTY CHANGE: Adding SOURCEDIR >property. Its value is 'C:\Projects\Installs\ServiceLink Enterprise >Library\'. > >MSI (c) (EC:F4) [09:53:21:563]: PROPERTY CHANGE: Adding VersionHandler >property. Its value is '3.01'. > >=== Logging started: 7/11/2006 9:53:21 === > >MSI (c) (EC:3C) [09:53:21:644]: Note: 1: 2205 2: 3: PatchPackage > >MSI (c) (EC:3C) [09:53:21:644]: Machine policy value 'DisableRollback' >is 0 > >MSI (c) (EC:3C) [09:53:21:644]: User policy value 'DisableRollback' is 0 > >MSI (c) (EC:3C) [09:53:21:644]: PROPERTY CHANGE: Adding UILevel >property. Its value is '5'. > >MSI (c) (EC:3C) [09:53:21:654]: PROPERTY CHANGE: Adding ACTION property. >Its value is 'INSTALL'. > >MSI (c) (EC:3C) [09:53:21:654]: Doing action: INSTALL > >MSI (c) (EC:3C) [09:53:21:654]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:21: INSTALL. > >MSI (c) (EC:3C) [09:53:21:664]: UI Sequence table 'InstallUISequence' is >present and populated. > >MSI (c) (EC:3C) [09:53:21:664]: Running UISequence > >MSI (c) (EC:3C) [09:53:21:664]: PROPERTY CHANGE: Adding EXECUTEACTION >property. Its value is 'INSTALL'. > >MSI (c) (EC:3C) [09:53:21:664]: Doing action: PrepareDlg > >MSI (c) (EC:3C) [09:53:21:664]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:21: PrepareDlg. > >MSI (c) (EC:F4) [09:53:21:724]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:F4) [09:53:21:724]: Note: 1: 2228 2: 3: Error 4: SELECT >`Message` FROM `Error` WHERE `Error` = 2898 > >Info 2898. WixUI_Font_Bigger, Tahoma, 0 > >MSI (c) (EC:F4) [09:53:21:734]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:F4) [09:53:21:734]: Note: 1: 2228 2: 3: Error 4: SELECT >`Message` FROM `Error` WHERE `Error` = 2898 > >Info 2898. WixUI_Font_Normal, Tahoma, 0 > >Action ended 9:53:21: PrepareDlg. Return value 1. > >MSI (c) (EC:3C) [09:53:21:885]: Doing action: AppSearch > >MSI (c) (EC:3C) [09:53:21:885]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:21: AppSearch. > >MSI (c) (EC:3C) [09:53:21:955]: Note: 1: 2262 2: Signature 3: >-2147287038 > >MSI (c) (EC:3C) [09:53:21:955]: Note: 1: 1402 2: >HKEY_LOCAL_MACHINE\Software\ServiceLink\Microsoft Enterprise Library 3: >2 > >MSI (c) (EC:3C) [09:53:21:965]: Note: 1: 2262 2: Signature 3: >-2147287038 > >MSI (c) (EC:3C) [09:53:21:965]: PROPERTY CHANGE: Adding VS2005INSTALLED >property. Its value is 'C:\Program Files\Microsoft Visual Studio >8\Common7\IDE\'. > >MSI (c) (EC:3C) [09:53:21:975]: Note: 1: 2262 2: Signature 3: >-2147287038 > >MSI (c) (EC:3C) [09:53:21:975]: Note: 1: 1402 2: >HKEY_LOCAL_MACHINE\Software\ServiceLink\ServiceLink Enterprise Library >3: 2 > >Action ended 9:53:21: AppSearch. Return value 1. > >MSI (c) (EC:3C) [09:53:21:975]: Doing action: ValidateProductID > >MSI (c) (EC:3C) [09:53:21:975]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:21: ValidateProductID. > >Action ended 9:53:21: ValidateProductID. Return value 1. > >MSI (c) (EC:3C) [09:53:22:005]: Doing action: CostInitialize > >MSI (c) (EC:3C) [09:53:22:005]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:22: CostInitialize. > >MSI (c) (EC:3C) [09:53:22:015]: Machine policy value 'MaxPatchCacheSize' >is 10 > >MSI (c) (EC:3C) [09:53:22:065]: PROPERTY CHANGE: Adding ROOTDRIVE >property. Its value is 'C:\'. > >MSI (c) (EC:3C) [09:53:22:065]: PROPERTY CHANGE: Adding CostingComplete >property. Its value is '0'. > >Action ended 9:53:22: CostInitialize. Return value 1. > >MSI (c) (EC:3C) [09:53:22:065]: Doing action: FileCost > >MSI (c) (EC:3C) [09:53:22:065]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:22: FileCost. > >MSI (c) (EC:3C) [09:53:22:086]: Note: 1: 2205 2: 3: Class > >MSI (c) (EC:3C) [09:53:22:086]: Note: 1: 2205 2: 3: Extension > >MSI (c) (EC:3C) [09:53:22:086]: Note: 1: 2205 2: 3: TypeLib > >Action ended 9:53:22: FileCost. Return value 1. > >MSI (c) (EC:3C) [09:53:22:086]: Doing action: CostFinalize > >MSI (c) (EC:3C) [09:53:22:086]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:22: CostFinalize. > >MSI (c) (EC:3C) [09:53:22:096]: PROPERTY CHANGE: Adding OutOfDiskSpace >property. Its value is '0'. > >MSI (c) (EC:3C) [09:53:22:096]: PROPERTY CHANGE: Adding >OutOfNoRbDiskSpace property. Its value is '0'. > >MSI (c) (EC:3C) [09:53:22:096]: PROPERTY CHANGE: Adding >PrimaryVolumeSpaceAvailable property. Its value is '0'. > >MSI (c) (EC:3C) [09:53:22:096]: PROPERTY CHANGE: Adding >PrimaryVolumeSpaceRequired property. Its value is '0'. > >MSI (c) (EC:3C) [09:53:22:096]: PROPERTY CHANGE: Adding >PrimaryVolumeSpaceRemaining property. Its value is '0'. > >MSI (c) (EC:3C) [09:53:22:096]: Note: 1: 2205 2: 3: Patch > >MSI (c) (EC:3C) [09:53:22:096]: Note: 1: 2205 2: 3: Condition > >MSI (c) (EC:3C) [09:53:22:106]: PROPERTY CHANGE: Adding TARGETDIR >property. Its value is 'C:\'. > >MSI (c) (EC:3C) [09:53:22:106]: PROPERTY CHANGE: Adding INSTALLDIR >property. Its value is 'C:\Program Files\ServiceLink Enterprise >Library\'. > >MSI (c) (EC:3C) [09:53:22:106]: Target path resolution complete. Dumping >Directory table... > >MSI (c) (EC:3C) [09:53:22:106]: Note: target paths subject to change >(via custom actions or browsing) > >MSI (c) (EC:3C) [09:53:22:106]: Dir (target): Key: TARGETDIR , >Object: C:\ > >MSI (c) (EC:3C) [09:53:22:106]: Dir (target): Key: WindowsFolder >, Object: C:\WINDOWS\ > >MSI (c) (EC:3C) [09:53:22:106]: Dir (target): Key: ProgramFilesFolder >, Object: C:\Program Files\ > >MSI (c) (EC:3C) [09:53:22:106]: Dir (target): Key: INSTALLDIR , >Object: C:\Program Files\ServiceLink Enterprise Library\ > >MSI (c) (EC:3C) [09:53:22:106]: PROPERTY CHANGE: Adding INSTALLLEVEL >property. Its value is '1'. > >Action ended 9:53:22: CostFinalize. Return value 1. > >MSI (c) (EC:3C) [09:53:22:216]: Skipping action: MaintenanceWelcomeDlg >(condition is false) > >MSI (c) (EC:3C) [09:53:22:216]: Skipping action: ResumeDlg (condition is >false) > >MSI (c) (EC:3C) [09:53:22:216]: Doing action: WelcomeDlg > >MSI (c) (EC:3C) [09:53:22:216]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:22: WelcomeDlg. > >MSI (c) (EC:F4) [09:53:22:337]: Note: 1: 2205 2: 3: _RemoveFilePath > >MSI (c) (EC:F4) [09:53:22:337]: Note: 1: 2205 2: 3: MsiFileHash > >MSI (c) (EC:F4) [09:53:22:347]: PROPERTY CHANGE: Modifying >CostingComplete property. Its current value is '0'. Its new value: '1'. > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: BindImage > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: ProgId > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: PublishComponent > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: SelfReg > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: Extension > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: Font > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: Shortcut > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2205 2: 3: Class > >MSI (c) (EC:F4) [09:53:22:377]: Note: 1: 2727 2: > >MSI (c) (EC:F4) [09:53:23:220]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:F4) [09:53:23:220]: Note: 1: 2228 2: 3: Error 4: SELECT >`Message` FROM `Error` WHERE `Error` = 2898 > >Info 2898. WixUI_Font_Title, Tahoma, 0 > >MSI (c) (EC:F4) [09:53:23:270]: Note: 1: 2205 2: 3: ComboBox > >MSI (c) (EC:F4) [09:53:23:270]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:F4) [09:53:23:270]: Note: 1: 2228 2: 3: Error 4: SELECT >`Message` FROM `Error` WHERE `Error` = 2205 > >DEBUG: Error 2205: Database: . Table does not exist: ComboBox > >MSI (c) (EC:F4) [09:53:24:766]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:F4) [09:53:24:766]: Note: 1: 2228 2: 3: Error 4: SELECT >`Message` FROM `Error` WHERE `Error` = 1709 > >MSI (c) (EC:F4) [09:53:24:766]: Product: ServiceLink Enterprise Library >2.0 -- The installer has encountered an unexpected error installing this >package. This may indicate a problem with this package. The error code >is 2205. The arguments are: , ComboBox, > > > >Action ended 9:53:24: WelcomeDlg. Return value 3. > >MSI (c) (EC:3C) [09:53:24:816]: Doing action: FatalError > >MSI (c) (EC:3C) [09:53:24:816]: Note: 1: 2205 2: 3: ActionText > >Action start 9:53:24: FatalError. > >Action ended 9:53:26: FatalError. Return value 2. > >Action ended 9:53:26: INSTALL. Return value 3. > >=== Logging stopped: 7/11/2006 9:53:26 === > >MSI (c) (EC:3C) [09:53:26:081]: Note: 1: 1708 > >MSI (c) (EC:3C) [09:53:26:081]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:3C) [09:53:26:081]: Note: 1: 2228 2: 3: Error 4: SELECT >`Message` FROM `Error` WHERE `Error` = 1708 > >MSI (c) (EC:3C) [09:53:26:091]: Note: 1: 2205 2: 3: Error > >MSI (c) (EC:3C) [09:53:26:091]: Note: 1: 2228 2: 3: Error 4: SELECT >`Message` FROM `Error` WHERE `Error` = 1709 > >MSI (c) (EC:3C) [09:53:26:091]: Product: ServiceLink Enterprise Library >2.0 -- Installation failed. > > > >MSI (c) (EC:3C) [09:53:26:121]: Grabbed execution mutex. > >MSI (c) (EC:3C) [09:53:26:121]: Cleaning up uninstalled install >packages, if any exist > >MSI (c) (EC:3C) [09:53:26:141]: MainEngineThread is returning 1603 > >=== Verbose logging stopped: 7/11/2006 9:53:26 === > > > > >------------------------------------------------------------------------- >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 Geronimo >http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >_______________________________________________ >WiX-users mailing list >WiX-users@lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------- 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 Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users