[WiX-users] Smart Cabbing and Patches

2009-05-05 Thread carlldev
I need to have the same files installed to a second location during an install. Having read the article on http://robmensching.com/blog/posts/2007/6/1/quotSmart-cabbingquot-added-to-WiX-toolset smart cabbing I'm happy that it can be done without impacting the size of the MSI. But what I want to

Re: [WiX-users] setupbld, bootstrappers and command line parameters (msicl)

2008-12-08 Thread carlldev
dated roadmap about all of this is coming soon. I've just been > focused on killing the last few extension bugs. Can you tell what we're > focused on? > > -Original Message- > From: carlldev [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 27, 2008 01:

Re: [WiX-users] setupbld, bootstrappers and command line parameters (msicl)

2008-11-27 Thread carlldev
ll supersede the > functionality completely. All of the ClickThrough related work moved to > WiX v4. > > -Original Message- > From: carlldev [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 26, 2008 07:22 > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-us

Re: [WiX-users] setupbld, bootstrappers and command line parameters (msicl)

2008-11-26 Thread carlldev
I've logged this bug on SourceForge as Bootstrapper cannot take command line parameters with spaces - ID: 2229894 Rob has changed the Group property to v4.0. Does this mean we have to wait for Wix 4.0 before we see a change to this? -- View this message in context: http://n2.nabble.com/setupb

[WiX-users] setupbld, bootstrappers and command line parameters (msicl)

2008-11-06 Thread carlldev
Has anyone noticed that the wix bootstrappers can't take command line parameters that have spaces in them? I have created a bootstrapper using setupbld, and it works fine if run as it is. But try and feed in some parameters like this: setup.exe /msicl abc="1 2 3" and you get a window "Inst

Re: [WiX-users] Votive support for VS 2005

2008-06-23 Thread carlldev
I can manually open it, but the same happens - nothing in Solution Explorer. No errors are shown. -- View this message in context: http://www.nabble.com/Votive-support-for-VS-2005-tp18031954p18064626.html Sent from the wix-users mailing list archive at Nabble.com. -

[WiX-users] Votive support for VS 2005

2008-06-20 Thread carlldev
Hi Rob and co, I have installed the 3.0.4214.0 version of Wix on my Windows 2003 SP2 machine (Visual Studio 2005). I created a new WiX project, and though the process created 4 files (Product.wxs, WixProject1.sln, WixProject2.suo, WixProject2.wixproj), it only shows Product.wxs in the editor win

Re: [WiX-users] Votive doesn't work with VS 2005

2008-06-05 Thread carlldev
> Christopher Painter, Author of Deployment Engineering Blog > Have a hot tip, know a secret or read a really good thread that deserves > attention? E-Mail Me > > --- On Thu, 6/5/08, carlldev <[EMAIL PROTECTED]> wrote: > > From: carlldev <[EMAIL PROTECTED]> > Sub

Re: [WiX-users] Votive doesn't work with VS 2005

2008-06-05 Thread carlldev
hem. > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of carlldev > Sent: Wednesday, June 04, 2008 03:36 > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Votive doesn't work with VS 2005 > > > I have

Re: [WiX-users] Votive doesn't work with VS 2005

2008-06-04 Thread carlldev
I have tried version 4130 and that also does not do it! Why release something that doesn't work? Cockerham, Greg M wrote: > > I recently installed Votive on a machine running VS2005 (version > 8.0.50727.42). When I attempt to create a WiX project, the status bar > reports > the project was suc

Re: [WiX-users] InstallMode Conditions DON'T work!

2007-12-28 Thread carlldev
de as well and each component will be handled individually Bob Arnson-6 wrote: > > carlldev wrote: >> The above works as advertised for installing and uninstalling, but if I >> click repair, then the RemoveImported part is run as well, which it >> shouldn't do because

[WiX-users] InstallMode Conditions DON'T work!

2007-12-24 Thread carlldev
Using Wix 3.0.2925.0 on Windows 2003. I have an installation that uses custom actions. Let’s forget what the custom actions do for the purpose of this message. They work fine. Here is the code I am using in my product.wxs file: The above works as advertised for installing and uninstalling, b

Re: [WiX-users] Adding records to MSI on the fly

2007-03-28 Thread carlldev
'PopulateMSIWebSiteProperties' /> > > When should custom action websites2 be called? > How should I set InstallExecuteSequence for these two custom actions? > > Regards, > Voranc > > On 2/9/07, carlldev <[EMAIL PROTECTED]> wrote: >

Re: [WiX-users] Adding records to MSI on the fly

2007-02-09 Thread carlldev
stall > WebApplications, WebVirtualDirs or WebDirs to already existing web sites > on > the machine. The install will fail if the web site does not exist in these > cases." > > > > > > and under a component I reference this Web Site > > Directory="DirW

Re: [WiX-users] Adding records to MSI on the fly

2007-02-01 Thread carlldev
I found an article somewhere that states that the values in the tables that were there when the MSI started cannot be removed or updated. Removing the Listitem from the Combobox also didn't work because that dropped the whole table all together as there are no other comboboxes. So I figured out 2

Re: [WiX-users] Adding records to MSI on the fly

2007-02-01 Thread carlldev
Thanks Rob, that did the trick. Now I have another problem - how do I remove the dummy record from the combo table? I have to add the dummy value to the combo for the combo table to be created in the msi, but then I can't remove it. Here is what I tried Sub DeleteFromComboBox(ByVal comboProp)

[WiX-users] Adding records to MSI on the fly

2007-01-31 Thread carlldev
(Wix3, WIN2K3) Sorry if this is posting a duplicate, but I can't get the solutions from any of the posts to work... I'm trying to add the details of installed Websites to a combobox on the fly. I can see the custom action being executed, but the records are not being added to the table. I know th