[WiX-users] does running upgrade msi or patch msi still require additional command line switches?

2008-09-04 Thread Robert O'Brien
Q1 - does running upgrade msi or patch msi still require additional command line switches? In the WiX tutorial Lesson 4 Upgrades and modularization details it talks about needing the use the following command line switches to run an upgrade msi msiexec /i SampleUpgrade2.msi REINSTALL=ALL

[WiX-users] is there a way to get current wix vs08 project extensions to output a patch msp?

2008-09-04 Thread Robert O'Brien
is there a recommended approach to getting current wix vs08 project extensions to output a patch msp? I've created a wix vs08 project and changed the Product.wxs to contain PatchCreation.../PatchCreation content versus Package.../Package content. In the current wix project settings there

[WiX-users] is it a known issue that the project macros $(OutDir), $(TargetDir) and $(TargetPath) still refer to bin\Debug versus bin\Debug\lang-locale where output now lands?

2008-09-04 Thread Robert O'Brien
is it a known issue that the project macros $(OutDir), $(TargetDir) and $(TargetPath) still refer to bin\Debug versus bin\Debug\lang-locale where output now lands? - This SF.Net email is sponsored by the Moblin Your Move

[WiX-users] when a msi is run in upgrade mode how do you determine/control what customActions do not run during upgrade processing?

2008-09-03 Thread Robert O'Brien
When a msi is run in upgrade mode how do you determine/control what customActions do not run during upgrade processing?I have a v1.0 msi that I'm now creating a v1.0 sp1 version of and associated patch msi. If I run the v1.0 sp1 msi in upgrade mode on an existing v1.0 install I have a

[WiX-users] think I found a project references wizard bug

2008-08-30 Thread Robert O'Brien
I think I found a project references wizard bug. To repro take a sln and place various csproj files in solution folders, e.g. slnRoot\ProjectGrouping1\ProjectA\ProjectA.csproj. Now in your slnRoot\Setup\Setup.wixproj add a reference to ProjectA at which point the Setup.wixproj contains

[WiX-users] small updates or minor upgrades msi's and associated msp's

2008-08-29 Thread Robert O'Brien
We have a v1.0 service deliverable where all aspects of installing the service on any given node are encapsulated in the msi. As you might expect with a service deliverable in addition to use of standard issue wix provisioning steps it also required a sequencing in few CustomActions using

[WiX-users] after updating to the current wix 3.0.4311.0 drop I'm now getting compiler error CNDL0103: The system cannot find the file 'Files' with type 'Source'

2008-07-16 Thread Robert O'Brien
After updating to the current wix 3.0.4311.0 drop I'm now getting compiler error CNDL0103: The system cannot find the file 'Files' with type 'Source' To repro on my w08 x64 dev wks I use vs08 | file | new | project | wix | wix project | f6 (build) at which point everything is fine. I then use

Re: [WiX-users] after updating to the current wix 3.0.4311.0 drop I'm now getting compiler error CNDL0103: The system cannot find the file 'Files' with type 'Source'

2008-07-16 Thread Robert O'Brien
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert O'Brien Sent: Wednesday, July 16, 2008 9:10 AM To: 'wix-users@lists.sourceforge.net' Subject: [WiX-users] after updating to the current wix 3.0.4311.0 drop I'm now getting compiler error CNDL0103: The system

Re: [WiX-users] after updating to the current wix 3.0.4311.0 drop I'm now getting compiler error CNDL0103: The system cannot find the file 'Files' with type 'Source'

2008-07-16 Thread Robert O'Brien
wix3_x64.msi install and building from the gui versus msbuild command line. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert O'Brien Sent: Wednesday, July 16, 2008 10:30 AM To: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] after

[WiX-users] steps necessary to inject a custom dialog into WixUIExtension provided UI sequences

2008-07-16 Thread Robert O'Brien
Using the wix chm and wix tutorial documentation I've come up with the following wix sources in an attempt to inject a custom dialog into WixUIExtension provided WixUI_FeatureTree UI sequence. This compiles fine but when I run the msi I do not see the expected UserRegistrationDlg displayed

Re: [WiX-users] steps necessary to inject a custom dialog into WixUIExtension provided UI sequences

2008-07-16 Thread Robert O'Brien
a custom dialog into WixUIExtension provided UI sequences requires to make a customized copy of the desired WixUIExtension provided UI sequence? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert O'Brien Sent: Wednesday, July 16, 2008 12:15 PM To: 'wix-users

Re: [WiX-users] XmlConfig setting I should use to replace just the address attribute value in the following parts of an app.config using a public property defined value?

2008-05-17 Thread Robert O'Brien
).config / util:XmlFile Id=Tool1IEventingServiceEndpointAddress File=[#MyTool1.exe.config] ElementPath=/configuration/system.serviceModel/client/[EMAIL PROTECTED]quot;WSHttpBinding_IMyWcfServicequot;[\]] Name=address Value=[MyWcfServiceUrl] Action=setValue / From: Robert O'Brien Sent: Friday

[WiX-users] XmlConfig setting I should use to replace just the address attribute value in the following parts of an app.config using a public property defined value?

2008-05-16 Thread Robert O'Brien
Any tips on the XmlConfig setting I should use to replace just the address attribute value in the following parts of an app.config using a public property defined value? I'm thinking something like the following based on the samples provided for using XmlConfig but am concernted that I'm

Re: [WiX-users] How to associate certificate with IIS website without adding certificate to store?

2008-05-15 Thread Robert O'Brien
the iis:Certificate entry such that it won't try and install it if it already sees a certificate of that name in the local machine store? From: Rob Mensching Sent: Wednesday, May 14, 2008 11:38 PM To: Robert O'Brien; 'wix-users@lists.sourceforge.net' Subject: RE: [WiX-users] How to associate certificate with IIS

Re: [WiX-users] How to associate certificate with IIS website without adding certificate to store?

2008-05-15 Thread Robert O'Brien
I'm deploying the cert to? iis:WebSite Id=Site1WebSite Description=Site1 Web Site Directory=Site1Dir iis:WebAddress Id=Site1WebAddress Port=[SITE1PORT] Secure=yes / iis:CertificateRef Id=Site1Certificate[ENVIRONMENTID] / /iis:WebSite From: Robert O'Brien Sent: Thursday, May 15, 2008 9

[WiX-users] is there an attribute setting or ??? way get a iis:WebSite entry to create if not exist, don't touch if it does already exist, and don't remove on uninstall?

2008-05-15 Thread Robert O'Brien
is there an attribute setting or ??? way get a iis:WebSite entry to create if not exist, don't touch if it does already exist, and don't remove on uninstall? - This SF.net email is sponsored by: Microsoft Defy all

Re: [WiX-users] How to associate certificate with IIS website without adding certificate to store?

2008-05-14 Thread Robert O'Brien
Did this work and if so does there exist a sample of what it means to create a permanent component Certificate entry that refers to an ssl certificate already known to be present on hosts you are deploying to? In other words I just want my iis site settings to bind to port 443 and use an known

[WiX-users] is it valid to reference a binary file id using a public property value?

2008-05-06 Thread Robert O'Brien
is it valid to reference a binary file id using a public property value? e.g. if I have the following public property and binary files defined Property Id=ENVIRONMENTID Value=Unk / Binary Id=MyService.exe.dvt.config SourceFile=$(var.SolutionDir)Configuration\MyService.exe.dvt.config / Binary

Re: [WiX-users] is it valid to reference a binary file id using a public property value?

2008-05-06 Thread Robert O'Brien
Based on results the compiler doesn't like my attempt to use a Binary file id reference comprised of a public property value [#MyService.exe.[ENVIRONMENTID].config]. That being the case Is there some way of accomplishing this file name reference that I'm overlooking? From: Robert O'Brien Sent

Re: [WiX-users] public property registry search assignment not working during uninstall passes

2008-04-29 Thread Robert O'Brien
From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 29, 2008 7:55 AM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] public property registry search assignment not working during uninstall passes Robert O'Brien wrote: Property Id=DATABASEHOST

Re: [WiX-users] custom action condition to cover both rollback and uninstall

2008-04-27 Thread Robert O'Brien
] Sent: Sunday, April 27, 2008 4:23 PM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] custom action condition to cover both rollback and uninstall Robert O'Brien wrote: I have the following custom action condition in place intended to cover both rollback

[WiX-users] custom action condition to cover both rollback and uninstall

2008-04-26 Thread Robert O'Brien
I have the following custom action condition in place intended to cover both rollback and uninstall scenarios because its looking for the state of the databases feature and database1 component to be installed and for the action of the databases feature and database1 component to be remove in

Re: [WiX-users] RegistryKey Root=HKLM Key=Software\Wow6432Node\... keeps getting provisioned under HKLM\Software\... path

2008-04-20 Thread Robert O'Brien
that is keeping my verbose log for detailing the WriteRegitryValues custom action processing? From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Saturday, April 19, 2008 6:12 PM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] RegistryKey Root=HKLM Key=Software\Wow6432Node

Re: [WiX-users] msi errors out looking for iis during installs where feature that does nothing with iis is only one selected

2008-04-20 Thread Robert O'Brien
and ony enable ConfigureIIs processing in those cases? Custom Action=ConfigureIIs After=InstallFiles(Not Installed And SitesFeature Enabled ???) Or (Remove And SitesFeature Installed ???)/Custom From: Robert O'Brien Sent: Saturday, April 19, 2008 10:16 AM To: 'wix-users@lists.sourceforge.net' Subject

Re: [WiX-users] msi errors out looking for iis during installs where feature that does nothing with iis is only one selected

2008-04-20 Thread Robert O'Brien
And amp;Sites=3) Or (Installed And !Sites=3)/Custom From: Robert O'Brien Sent: Sunday, April 20, 2008 9:18 AM To: 'wix-users@lists.sourceforge.net' Subject: RE: msi errors out looking for iis during installs where feature that does nothing with iis is only one selected The ConfiguratIIs custom

Re: [WiX-users] RegistryKey Root=HKLM Key=Software\Wow6432Node\... keeps getting provisioned under HKLM\Software\... path

2008-04-20 Thread Robert O'Brien
Server\Services\NotificationServices\Instances\EventingMSSolve RegistryValue Name=DBServer Type=string Value=[DATABASEHOST] / RegistryValue Name=Version Type=string Value=9.0.242 / /RegistryKey From: Robert O'Brien Sent: Sunday, April 20, 2008 9:14 AM To: 'Bob Arnson' Cc: 'wix-users

Re: [WiX-users] RegistryKey Root=HKLM Key=Software\Wow6432Node\... keeps getting provisioned under HKLM\Software\... path

2008-04-19 Thread Robert O'Brien
\Microsoft SQL Server\Services\NotificationServices\Instances\EventingMSSolve Version 9.0.242 Site1Vdir3 From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2008 8:38 AM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users

[WiX-users] msi errors out looking for iis during installs where feature that does nothing with iis is only one selected

2008-04-18 Thread Robert O'Brien
I have a service deliverable msi which has the features databases | services | sites | tools.Only the sites feature makes use of wixIisExtension.dll.When I run my msi with only the databases feature selected it fails when it finds that it cannot talk to iis with the error message

Re: [WiX-users] RegistryKey Root=HKLM Key=Software\Wow6432Node\... keeps getting provisioned under HKLM\Software\... path

2008-04-17 Thread Robert O'Brien
/ /RegistryKey From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 8:41 PM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] RegistryKey Root=HKLM Key=Software\Wow6432Node\... keeps getting provisioned under HKLM\Software\... path Robert

[WiX-users] is there a way of creating url based shortcut w/o having to refer to iexplore.exe as target and url as arguments?

2008-04-17 Thread Robert O'Brien
Is there a way of creating url based shortcut w/o having to refer to iexplore.exe as target and url as arguments? In the excerpt below I'm creating a web site vdir and I'd like to include a shortcut that allows users after setup of the service completes to launch and test one of the urls

[WiX-users] RegistryKey Root=HKLM Key=Software\Wow6432Node\... keeps getting provisioned under HKLM\Software\... path

2008-04-16 Thread Robert O'Brien
I have the following component contained registry key value settings defined. When I execute an msi with this setting in place on w03 or w08 x64 installs instead of the key and values being written out to HKLM\Software\Wow6432Node\... they keep getting provisioned under HKLM\Software\...

[WiX-users] condition statements checking for valid .net framework 2.0 and 3.5 installs appear to not be getting evaluated

2008-04-14 Thread Robert O'Brien
My condition statements checking for valid .net framework 2.0 and 3.5 installs appear to not be getting evaluated. Looking at the log files for an msi with the following property value assignment and condition checks I see the expected values, e.g. Property(S): NFX20VERSION = 2.1.21022

Re: [WiX-users] using for %i processing commands in custom actions

2008-04-14 Thread Robert O'Brien
=no ExecuteOnInstall=yes RollbackOnUninstall=yes / /Component /DirectoryRef /rob From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: Sunday, April 13, 2008 3:08 AM To: Robert O'Brien; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] using for %i processing commands in custom actions I

[WiX-users] using for %i processing commands in custom actions

2008-04-12 Thread Robert O'Brien
I have the following custom action I'm trying to make work and it seems the %i parameter is getting dropped when command line gets executed. This same statement works from a command prompt without any issues. Any insights as to how I need to restructure this cmd.exe for loop %i parameter

[WiX-users] escaping square brackets in custom action command line property values

2008-04-11 Thread Robert O'Brien
I'm trying to compile with the following custom action command line property value set containing square brackets. I tried using [[ and ]] respectively to escape the square brackets but that didn't solve the error ICE03: Invalid format string; Table: CustomAction, Column: Target, Key(s):

Re: [WiX-users] escaping square brackets in custom action command line property values

2008-04-11 Thread Robert O'Brien
Found hits on this in the archive. The following bracket escaping resolved the issue. CustomAction Id=QtExecCmdLineSet2 Property=QtExecCmdLineRun2 Value=quot;[SQLBINDIR]sqlcmd.exequot; /Q quot;create login [\[]NT AUTHORITY\NETWORK SERVICE[\]] from windowsquot; / From: Robert O'Brien Sent

[WiX-users] uninstall and rollback sequence condition settings

2008-04-11 Thread Robert O'Brien
I have the following custom action sequenced to run successfully on uninstall. Custom Action=QtExecCmdLineSet101 Before=QtExecCmdLineRun101Installed/Custom I have a Feature named Databases with a component named Database1 and I'd only like this custom action sequenced if I'm uninstalling and

Re: [WiX-users] format of wix project suppress specific warnings text box

2008-04-11 Thread Robert O'Brien
the warning numbers cycle once you suppress existing ones and suppressing the new ones involves starting at 1 again.. From: Robert O'Brien Sent: Thursday, April 10, 2008 8:24 PM To: Jordan Fitzgibbon; 'wix-users@lists.sourceforge.net' Subject: RE: [WiX-users] format of wix project suppress specific

Re: [WiX-users] format of wix project suppress specific warnings text box

2008-04-11 Thread Robert O'Brien
Fitzgibbon Sent: Friday, April 11, 2008 2:15 PM To: Robert O'Brien; 'wix-users@lists.sourceforge.net' Subject: RE: [WiX-users] format of wix project suppress specific warnings text box Hmm, this looks like a warning from VS doing XML schema validation, not from WiX. So you're right, there's

[WiX-users] escaping quotes in property values

2008-04-11 Thread Robert O'Brien
I'm trying to escaping quotes in property values...it doesn't like the following and it didn't like [\] either. Any suggestions? Property Id=DATABASELOGINS Value=quot;NT AUTHORITY\NETWORK SERVICEquot; / - This SF.net email

Re: [WiX-users] escaping quotes in property values

2008-04-11 Thread Robert O'Brien
Disregard, it must be Friday...I was missing a closing quote on my Id attribute setting. From: Robert O'Brien Sent: Friday, April 11, 2008 2:54 PM To: 'wix-users@lists.sourceforge.net' Subject: escaping quotes in property values I'm trying to escaping quotes in property values...it doesn't like

Re: [WiX-users] light.exe : error LGHT0217

2008-04-11 Thread Robert O'Brien
into the error below so that appears to have been the source of this issue. From: Robert O'Brien Sent: Thursday, April 10, 2008 8:27 PM To: 'Bob Arnson' Cc: 'wix-users@lists.sourceforge.net' Subject: RE: [WiX-users] light.exe : error LGHT0217 Yes and it must have to do with something in my project

[WiX-users] light.exe : error LGHT0217

2008-04-10 Thread Robert O'Brien
I have a project that builds fine in the IDE and was initially building fine on my tfs build agent host via the tfs automated msbuild .proj file processing. Something mysterious has happened with the tfs build agent host tfs automated msbuild .proj file processing and now I'm getting a wix

[WiX-users] format of wix project suppress specific warnings text box

2008-04-10 Thread Robert O'Brien
What is the format of of the wix project suppress specific warnings text box, e.g. I'd like to enter something there that suppresses the following warning that my sources are generating which as I understand it relates to a known bug that will cause this warning not to occur in some future

Re: [WiX-users] format of wix project suppress specific warnings text box

2008-04-10 Thread Robert O'Brien
Thanks. Adding SuppressSpecificWarnings1;2;3;4;5;6;7;8;9;10/SuppressSpecificWarnings to the project did the trick. From: Jordan Fitzgibbon Sent: Thursday, April 10, 2008 6:14 PM To: Robert O'Brien; 'wix-users@lists.sourceforge.net' Subject: RE: [WiX-users] format of wix project suppress

Re: [WiX-users] light.exe : error LGHT0217

2008-04-10 Thread Robert O'Brien
Yup and it must have to do with something in my project file or sources because I just built out a second tfs build agent and the problem repros. From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 6:26 PM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re

[WiX-users] support for suppressing individual ice warnings

2008-04-09 Thread Robert O'Brien
Is there support for suppressing individual ice warnings? Currently my wix sources are throwing the following Pendantic mode ice warnings due to me using the variables approach show below for arriving at what those settings should be.I'd like a way to suppress these understood and accepted

Re: [WiX-users] is there a way to access wixproj macro values from within wix sources

2008-04-09 Thread Robert O'Brien
and Source=$(var.OutDir)_PublishedWebsites\SomeWebApp\SomeWcfService.svc. From: Robert O'Brien Sent: Friday, April 04, 2008 10:57 AM To: Justin Rockwood; Jason Ginchereau; 'wix-users@lists.sourceforge.net' Subject: RE: [WiX-users] is there a way to access wixproj macro values from within wix sources

Re: [WiX-users] is there a way to access wixproj macro values from within wix sources

2008-04-09 Thread Robert O'Brien
To: Robert O'Brien; Jason Ginchereau; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] is there a way to access wixproj macro values from within wix sources Those are good scenarios. Just a note that you can accomplish the same thing today by defining the variables yourself. You would just change

Re: [WiX-users] CAQuietExec: Error 0x80070002: Command failed to execute.

2008-04-08 Thread Robert O'Brien
Deliverable.txt Property(S): QtExecCmdLineDetails1 = C:\WINDOWS\system32\xcopy.exe /i /y D:\My Service Deliverable\ReadMe.txt d:\temp From: Robert O'Brien Sent: Tuesday, April 08, 2008 8:40 AM To: 'wix-users@lists.sourceforge.net' Subject: CAQuietExec: Error 0x80070002: Command failed to execute. Any

[WiX-users] CAQuietExec: Error 0x80070002: Command failed to execute.

2008-04-08 Thread Robert O'Brien
Any insights as to what I'm doing wrong in declaring my QtExecCmdLine used by my two CAQuietExec in the source excerpts below?When I review the log file for the property values where I store a copy of the runtime generated QtExecCmdLine values I see what I was expecting and I can execute

[WiX-users] is there a way to access wixproj macro values from within wix sources

2008-04-04 Thread Robert O'Brien
is there a way to access .wixproj macro values from within wix sources? For example in csproj and wixproj settings, such as pre and post build events, one can make use of useful project related macro values such as $(Configuration), $(SolutionDir), $(ProjectDir), $(OutputPath), $(OutDir),

[WiX-users] is there a way to pass define preprocessor variable settings when buliding using tfs msbuild processing

2008-04-04 Thread Robert O'Brien
In my wixproj settings UI I can define preprocessor variable settings that are then passed to candle at build time, e.g. candle.exe -dSomePreProcessorVariable=Foo Is there a way when building the wixproj usingtfs msbuild processing, e.g. msbuild.exe mySetup.wixproj /???

Re: [WiX-users] is there a way to access wixproj macro values from within wix sources

2008-04-04 Thread Robert O'Brien
not specifically mentioned in that help document to work as well, e.g. $(var.Configuration), $(var.OutputPath), $(var.OutDir) and $(var.TargetPath)? From: Robert O'Brien Sent: Friday, April 04, 2008 5:14 AM To: 'wix-users@lists.sourceforge.net' Subject: is there a way to access wixproj macro values

Re: [WiX-users] is there a way to access wixproj macro values from within wix sources

2008-04-04 Thread Robert O'Brien
of Supported Project References documentation? From: Robert O'Brien Sent: Friday, April 04, 2008 6:29 AM To: 'wix-users@lists.sourceforge.net' Subject: RE: is there a way to access wixproj macro values from within wix sources . . . according to help doc section entitled List of Supported Project

Re: [WiX-users] is there a way to access wixproj macro values from within wix sources

2008-04-04 Thread Robert O'Brien
), $(var.OutDir) and $(var.TargetPath). So are these ones basically n/a but if I reference a non-wix project like a csproj generated dll then I should expect that $(var.ReferencedProjectName.StandardIssueProjectMacro) variable references will work? From: Robert O'Brien Sent: Friday, April 04, 2008 7

Re: [WiX-users] is there a way to access wixproj macro values from within wix sources

2008-04-04 Thread Robert O'Brien
Done. http://sourceforge.net/tracker/index.php?func=detailaid=1934684group_id=105970atid=642717 From: Justin Rockwood Sent: Friday, April 04, 2008 10:38 AM To: Robert O'Brien; Jason Ginchereau; 'wix-users@lists.sourceforge.net' Subject: RE: [WiX-users] is there a way to access wixproj macro

[WiX-users] is there a way to get WixUI_Mondo and WixUI_FeatureTree to show feature tree components

2008-04-03 Thread Robert O'Brien
Is there a way to get WixUI_Mondo and WixUI_FeatureTree to show feature tree components or do I have to essentially define a FeatureGroup and have that contain Feature definitions aligned with the component options I want to be provided as optional selections?

Re: [WiX-users] is there a way to get WixUI_Mondo and WixUI_FeatureTree to show feature tree components

2008-04-03 Thread Robert O'Brien
/ ComponentRef Id=Counter / Feature Id=Site1 Title=Site1 Level=1 ComponentRef Id=Site1 / /Feature Feature Id=Site2 Title=Site2 Level=1 ComponentRef Id=Site2 / /Feature /Feature From: Robert O'Brien Sent: Thursday, April 03, 2008 4:02 PM To: 'wix-users

Re: [WiX-users] is XmlConfig intended for service deliverable cases where you want to modify web.config app.config settings after putting file into place?

2008-03-29 Thread Robert O'Brien
containing a default setting followed by a Create to put the host specific entry in place? From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Saturday, March 29, 2008 1:44 PM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] is XmlConfig intended for service

Re: [WiX-users] does current wix drop provide support for a public property such as msiexec /i myservicedeliverable.msi propertySettings=environmentSpecificPropertySettings.xml ...?

2008-03-29 Thread Robert O'Brien
) that gets sequenced to process b4/after ??? to enable this? From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Saturday, March 29, 2008 1:44 PM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] does current wix drop provide support for a public property

[WiX-users] is XmlConfig intended for service deliverable cases where you want to modify web.config app.config settings after putting file into place?

2008-03-28 Thread Robert O'Brien
is XmlConfig intended for service deliverable cases where you want to modify web.config app.config settings after putting file into place? On a similar front should one expect the Action=create behavior to support update of a default node entry already in place in the service deliverable

[WiX-users] does current wix drop provide support for a public property such as msiexec /i myservicedeliverable.msi propertySettings=environmentSpecificPropertySettings.xml ...?

2008-03-28 Thread Robert O'Brien
does current wix drop provide support for a public property such as msiexec /i myservicedeliverable.msi propertySettings= environmentSpecificPropertySettings.xml ... where environmentSpecificPropertySettings.xml consists of a single public property=value pairs on each line that you might have

[WiX-users] adding WixUIExtension produces Error HRESULT E_FAIL has been returned from a call to a COM component. when reopening solution

2008-03-12 Thread Robert O'Brien
After adding the following entry to my wix setup project using the votive vs08 project extensions support everything works fine. ItemGroup WixExtension Include=WixUIExtension HintPathC:\Program Files (x86)\Windows Installer XML v3\bin\WixUIExtension.dll/HintPath /WixExtension

[WiX-users] is there a wxs 3.0 xml setting that will enable a standard issue interactive UI experience?

2008-03-03 Thread Robert O'Brien
Is there a wxs 3.0 xml setting that will enable a standard issue interactive UI experience, e.g. Welcome - Features/Components Selection - InstallDir Override - Progress - Finish? - This SF.net email is sponsored by:

[WiX-users] are fragments still the right way to componentize development and is there a recommended wix3 solution for targeting installationlocation at c:\Program Files (x86)\... on x64 systems and c

2008-03-01 Thread Robert O'Brien
q1 - Are fragments still the recommended way for breaking apart a wxs development project into feature associated source files? q2 - Is there a recommended wix3 solution for targeting installationlocation at c:\Program Files (x86)\... on x64 systems and c:\Program Files\... on x86 systems?

Re: [WiX-users] are fragments still the right way to componentize development and is there a recommended wix3 solution for targeting installationlocation at c:\Program Files (x86)\... on x64 systems a

2008-03-01 Thread Robert O'Brien
[mailto:[EMAIL PROTECTED] Sent: Saturday, March 01, 2008 3:10 PM To: Robert O'Brien Cc: 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] are fragments still the right way to componentize development and is there a recommended wix3 solution for targeting installationlocation at c:\Program Files

<    1   2