Re: [WiX-users] WIX Licensing

2010-08-26 Thread James Poole
gt; this > decision is misinformed but unless we know there exact complaints it's hard > to > address them. > > 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

[WiX-users] WIX Licensing

2010-08-25 Thread James Poole
I just sat through a meeting at my employer for the last 3 months (a significantly large software company) who told me the CPL license WIX is released under was too restrictive to allow me to use it as a development tool. Of course I just spent the last 2 months porting a horrific InstallShield in

[WiX-users] Supersede Patch

2010-07-26 Thread James Poole
This is more of a general MSI question... Can a Patch that is NOT Uninstallable be superseded? I seem to recall this being possible, but I am getting an error "Uninstallation of the patch package is not supported" when I try to install the second patch that supersedes the first. Tha

Re: [WiX-users] Messagebox from custom action with a lot of text

2010-07-19 Thread James Poole
Did you try just showing a standard windows forms message box from within your C# custom action? MessageBox.Show() On Mon, Jul 19, 2010 at 12:31 PM, wrote: > > Hi Christopher > > I currently have the action scheduled after "CreateFolders". I use the CA > almost like a startup-condition. There

Re: [WiX-users] RemoveExisting Products failing with /qn upgrade

2010-07-17 Thread James Poole
with /qn upgrade > > One thing to look at would be how FindRelatedProducts is scheduled in > the InstallUISequence and InstallExecuteSequence. Also look at what the > ActionProperty in the Upgrade table is set to in both cases. > > Thanks, > Tom > > -Original Message

[WiX-users] RemoveExisting Products failing with /qn upgrade

2010-07-16 Thread James Poole
Does any know why the RemoveExistingProducts action would fail when an upgrade is run silently? If I run in full UI mode, everything works as expected. If I run the upgrade with /qn, the RemoveExistingProducts does not work and I end up with both products installed on the system. RemoveExistingP

Re: [WiX-users] Getting Progress of Rollback

2010-07-02 Thread James Poole
the code I'm basing off of. The problem is that after the > user cancels the installation and the handler returns IDCANCEL, > MsiInstallProduct immediately returns and the handler receives no more > messages. > > -Andy > > -Original Message- > From: James

Re: [WiX-users] Getting Progress of Rollback

2010-07-02 Thread James Poole
I've used the example here with success: http://msdn.microsoft.com/en-us/library/aa368786%28v=VS.85%29.aspx You'll see that it has a section where it handles the progress and roll back. Look at: /* determine direction */ -James Poole On Thu, Jul 1, 2010 at 6:02 PM, Andy Glass w

Re: [WiX-users] Best Practices - Using "*" for GUID automation

2010-06-29 Thread James Poole
Could someone chime in with a time when you wouldn't want to use "*" on component Guids? Would this cause issues with generating patches? -James On Tue, Jun 29, 2010 at 1:19 PM, Andy Clugston wrote: > Okay, it seemed like this approach would work, just wanted to verify. > Thanks! > > On Tue, J

Re: [WiX-users] Should i go for creation of 64 bit msi?

2010-06-11 Thread James Poole
Unless you have a million dollar deal pending on support of a Core Server without 32-bit WOW, I would say it's not worth your effort... If you have the power, I would designate this as an unsupported configuration. -James On Fri, Jun 11, 2010 at 1:41 PM, Sagar wrote: > > I agree with you Pa

Re: [WiX-users] Self Hosted WCF Service Install

2009-11-22 Thread james poole
ints makes me wonder if your app.config is > getting installed. I'd do some profiling of the app to see whats going on. > > 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 M

[WiX-users] Self Hosted WCF Service Install

2009-11-22 Thread james poole
So I'm fairly new to WIX and I'm running into a problem that seems pervasive on the web. Basically, I have a .NET self-hosted WCF service inside of a windows service. If I follow Msft's guidelines and add a installer class to the Windows Service project, then run installutil.exe, everything works