[WiX-users] Condition for Upgrading...

2013-05-09 Thread StevenOgilvie
Hi folks, I am confused, I looked within the WIX userlist and Googled this but I seem to have mixed results... I want to run a custom action on an Upgrade only.. I currently have it as: NOT Installed AND SERVER_INSTALL="0" But in some cases it is being run on a fresh install :( I am using the

Re: [WiX-users] .Net installation using Wix

2013-05-09 Thread Nick Miller
Hi Ashish, I don't know if you can install the .Net prequisite in an MSI, however I can tell you that all of your needs are what burn is for. You will also run into problems if your MSI is run on a Windows 7 machine with UAC enabled, whereas if you use burn, it will elevate your MSI for you if

Re: [WiX-users] Addon Upgrades

2013-05-09 Thread Wesley Manning
OK thanks. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: May-09-13 2:01 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Addon Upgrades Yes, known issue. Very, very hard to fix. On Thu, May 9, 2013 at 9:26 AM, Wesley

Re: [WiX-users] How to modify MSI from the custom bootstrapper

2013-05-09 Thread Christopher West C
OK, thank you for the information. I would like to get your thoughts on the following. For future releases of Wix(Wix 3.8?), do you envision Burn being updated to fully support DisplayInternalUI? Or is the real intent of Burn that the UI of the MSI should not be used, and that the UI should b

Re: [WiX-users] .Net installation using Wix

2013-05-09 Thread Hoover, Jacob
Your "must start from a MSI" requirement means http://msdn.microsoft.com/en-us/library/windows/desktop/aa368010(v=vs.85).aspx Do not use concurrent installations to install products that are intended to be released to the public. In all, they are a bad idea and should be avoided (as well they

Re: [WiX-users] Addon Upgrades

2013-05-09 Thread Rob Mensching
Yes, known issue. Very, very hard to fix. On Thu, May 9, 2013 at 9:26 AM, Wesley Manning wrote: > Say you have two addon bundles. > > Bundle 1 contains: > MSI A v1.0 > MSI B > > Bundle 2 contains: > MSI A v2.0 > MSI C > > Install bundle 1 and 2. Everything good. Then uninstall bundle 2. MSI

[WiX-users] Immediate VBS CustomAction executing another VBS script

2013-05-09 Thread Stifle, John L
My installation is installing a web application that is dependent on .NET Framework v4 FULL. One of the actions I take during the installation is to confirm that .NET Framework v4 is registered with IIS. I do this with the "aspnet_regiis" utility. However this utility requires "run as adminis

Re: [WiX-users] .Net installation using Wix

2013-05-09 Thread Neil Sleightholm
Take a look here http://neilsleightholm.blogspot.co.uk/2012/05/wix-burn-tipstricks.html this should get you started using burn and there is also the code you need to detect and install .NET 3.5. -Original Message- From: ashish thomas [mailto:ashishptho...@yahoo.co.in] Sent: 09 May 2013

[WiX-users] GetComponentState returning invalid parameter

2013-05-09 Thread Subbiah Ganesan
Hi all, I am trying to query the component state using GetComponentState by using ProductInstallation and getting invalid parameter exception even though i verified the component name for correct guid string. These are the values of ProductInstallation fields 1) ProductCode = myProductCode 2) User

[WiX-users] .Net installation using Wix

2013-05-09 Thread ashish thomas
Hi , I have the following requirement  I need to develop an installer using Wix . I need to check whether .Net 3.5 SP1 is installed or not and if the prerequisite is not met, must show a messagebox(dialog) to the user  telling that it is not installed - Do you wish to continue the install .Net,

[WiX-users] Addon Upgrades

2013-05-09 Thread Wesley Manning
Say you have two addon bundles. Bundle 1 contains: MSI A v1.0 MSI B Bundle 2 contains: MSI A v2.0 MSI C Install bundle 1 and 2. Everything good. Then uninstall bundle 2. MSI A is removed, not reverted to v1.0. A repair restored proper state of It seems to be same issue reported in bug

Re: [WiX-users] Creating patches

2013-05-09 Thread Rob Mensching
Are you using a different version of the WiX toolset to patch than what was used to build the MSIs? That's not technically supported since there are a lot of fine details that can go awry. However, that error message is not terribly helpful and a bug certainly would in order for it. On Tue, May

Re: [WiX-users] upgrade mysteriously installs older file version

2013-05-09 Thread József Koloszár
turns out it was "the" version number idiocy of msi kindly disregarding the fourth version code. the only thing baffling us is why it worked up untill recently... anyway, thanks for all the suggestions! > Message: 4 > Date: Wed, 8 May 2013 21:47:30 + > From: Tom - > Subject: Re: [WiX-users]

Re: [WiX-users] restart logic following a reboot

2013-05-09 Thread Rob Mensching
In WiX v3.7 the OnDetectBegin() passes in an "Installed" flag. I believe (you'll want to verify) that is false in this case. On Tue, May 7, 2013 at 2:01 PM, Mike Myers wrote: > Here is my scenario: > > * I've created an install and custom managed bootstrapper based on > Wix 3.7 > > *

Re: [WiX-users] Custom BA or not?

2013-05-09 Thread Rob Mensching
The decision is simple: Do you want more control over the user experience than what the wixstdba (or any other BA out there) offers? For example, try installing Visual Studio 2012. That UI is definitely not the wixstdba. On Tue, May 7, 2013 at 9:10 AM, David White wrote: > What are the general

Re: [WiX-users] How to modify MSI from the custom bootstrapper

2013-05-09 Thread Rob Mensching
Ahh, yeah, that makes sense. I think this is another of those cases like the progress bar not showing correctly for DisplayInternalUI='yes' on MsiPackages that isn't handled well in Burn today. As you've undoubtedly noted showing internal UI from Burn was not a high priority item in the initial rel

Re: [WiX-users] WebDeploy vs MSI

2013-05-09 Thread Rob Mensching
I'm not terribly happy with any of the options available today. On Wed, May 8, 2013 at 11:08 AM, Christopher Painter wrote: > Thanks Rob. Are there any other non-MSI based approaches that you feel may > be worthy of consideration? > > I feel very confident in my ability to deliver an MSI based

Re: [WiX-users] How to modify MSI from the custom bootstrapper

2013-05-09 Thread Christopher West C
In OnPlanPackageBegin, the value of the State is already set to "Present" when the event is invoked. So the question is, what value do I change it to in order to have the MSI run and for the MSI's UI to be displayed? I tried setting the State to RequestState.Repair, and while this did run the