Re: [WiX-users] Disable verbose log for MSIPackage in Burn

2013-10-07 Thread Blair Murri
I worked on one product where verbose logging quadrupled the installation time of the MSI over no logging at all, but in my experience that was an extreme case (a few years ago). If you want to isolate that as an issue (for test purposes) install the msi by itself using the command-line

Re: [WiX-users] Sequencing Patches with MBA

2013-10-07 Thread Blair Murri
Normally patch sequencing (and patch targeting) are done when building the MSPs themselves by manipulating their applicability (targeting) and sequencing (patchfamily) metadata. In your MBA you can only control what users do using your bundle, you cannot control what they do by using

Re: [WiX-users] One-Time Reboot in Burn Executable

2013-10-07 Thread Adam Roper
(Apologies for the faked 'reply' on this one, but I'm having Monday morning issues.) Thanks for the response Neil. We wrote a small exe as suggested and this worked well, but we have found that the exe is not called again on uninstall. The uninstall is called for the msi's in the reverse

Re: [WiX-users] One-Time Reboot in Burn Executable

2013-10-07 Thread Adam Roper
Yes we defined those, but it wasn’t picking them up. I’m not wanting to bother you good people with our own bug finding exercise if the problem is of our own making, I’m more looking in to what we should be doing. If those are the three items that should make it work then we can look in to

Re: [WiX-users] One-Time Reboot in Burn Executable

2013-10-07 Thread Markus Wehrle
Hi, Did you set an UninstallCommand and RepairCommand for your ExePackage. You also should provide a DetectCondition, so that burn can detect if your exe is installed or not. Markus Adam Roper adam.ro...@guidance.eu.com hat am 7. Oktober 2013 um 10:43 geschrieben: (Apologies for the

Re: [WiX-users] Unresolved reference to symbol 'WixBootstrapperApplication:ManagedBootstrapperApplicationHost'

2013-10-07 Thread rowbot
I have now, thanks... -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unresolved-reference-to-symbol-WixBootstrapperApplication-ManagedBootstrapperApplicationHost-tp7589453p7589495.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] One-Time Reboot in Burn Executable

2013-10-07 Thread Adam Roper
Markus, It appears that the logic against our extra ‘checking’ package was incorrect. We have now included two instances of the same executable, one before all packages and one at the end. The ‘DetectCondition’ for the one at the top is set to always ‘0’, so it will always run on install,

[WiX-users] Disable control by condition in burn installer interface.

2013-10-07 Thread Sergey Yukhno
Hello, all. I'd like to disable some controls by burn's condition, VersionNT64 for example. It is possible without writing own bootstrapper application? The single way, that I see - is RegistrySearch element, but it improper for my case. Thanks, Sergey.

Re: [WiX-users] Optimize compilation in Visual Studio Solution

2013-10-07 Thread Phill Hogland
I spent some time working on this issue also. I focused on my wixlib project first, then the msi project, and then the bundle project, tracking down the various reasons as to why I could not do an incremental build. I resolved the problems in each level of building before trying to solve the

Re: [WiX-users] [SPAM] Re: Bootstrapper errors

2013-10-07 Thread rowbot
WRT possible left-over bundle entries in the Uninstall key... Can a new bundle not 'handle' these entries if they exist (in other words... not crash) -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bootstrapper-errors-tp7582859p7589499.html

Re: [WiX-users] [SPAM] Re: Bootstrapper errors

2013-10-07 Thread Hoover, Jacob
How is it crashing? Are you using a custom BA or WixStdBA? Do you have a reproducible test case? The BA certainly shouldn't crash. -Original Message- From: rowbot [mailto:james.row...@microfocus.com] Sent: Monday, October 07, 2013 10:20 AM To: wix-users@lists.sourceforge.net Subject:

[WiX-users] How to detect an environmental variable's value?

2013-10-07 Thread RHaggard
I'm trying to set up a wxs script to handle two different conditions, building a setup on a normal developer's machine and building a setup on a TFS build agent. The problem is that the TFS build agent copies the products of a solution to a binaries folder while a normal developer's build does

Re: [WiX-users] How to detect an environmental variable's value?

2013-10-07 Thread Hoover, Jacob
If it were me, I'd add something like... IsTfsBuildAgent Condition= '$( IsTfsBuildAgent)' == ''no/ IsTfsBuildAgent ... DefineConstants $(DefineConstants); IsTfsBuildAgent =$(IsTfsBuildAgent); /DefineConstants To your WixProj. Then you should be able to do: ?if

Re: [WiX-users] How to detect an environmental variable's value?

2013-10-07 Thread RHaggard
Ah. Figured it out. It appears that the syntax of the conditional was incorrect. This works: ?ifdef env.IsTfsBuildAgent ? ?define SourcePath = ..\..\..\binaries ? ?else ? ?define SourcePath = ..\bin\$var.Configuration) ? ?endif ? Note the absence (despite what it says elsewhere in the

[WiX-users] WiX 3.8.1007 install is missing digital signature

2013-10-07 Thread Ivanoff, Alex
WiX 3.8.1007 install is missing digital signature. Is this expected? -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced

Re: [WiX-users] How to detect an environmental variable's value?

2013-10-07 Thread John Cooper
If you use $(var.MyProjectName.TargetDir)MyAssemblyName.dll correctly, it will just work. Building with TFS 2010 or later, the Default Template will set OutDir to the Binaries location for all projects. One of the many reasons this is done is for performance--file I/O is one of the biggest

Re: [WiX-users] WiX 3.8.1007 install is missing digital signature

2013-10-07 Thread Rob Mensching
Weekly releases are not signed by Outercurve. Have you seen weekly signed builds signed in the past? On Mon, Oct 7, 2013 at 11:42 AM, Ivanoff, Alex alex.ivan...@shavlik.comwrote: WiX 3.8.1007 install is missing digital signature. Is this expected?

Re: [WiX-users] WiX 3.8.1007 install is missing digital signature

2013-10-07 Thread Ivanoff, Alex
I am not sure. Not a big deal as long as I know it is expected not to be signed. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Monday, October 7, 2013 14:02 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.8.1007

[WiX-users] WiX 3.8.1007 /layout switch fails

2013-10-07 Thread John H Bergman (XPedient)
Just downloaded the 3.8.1007 build, the /layout option starts to download, but fails. I don't see a log generated. -Original Message- From: Ivanoff, Alex [mailto:alex.ivan...@shavlik.com] Sent: Monday, October 7, 2013 2:48 PM To: General discussion for Windows Installer XML toolset.

Re: [WiX-users] WiX 3.8.1007 /layout switch fails

2013-10-07 Thread Rob Mensching
wix38.exe /layout /l my.log Just succeeded for me and created my.log. Can you try a similar command to see it if works? On Mon, Oct 7, 2013 at 1:38 PM, John H Bergman (XPedient) john.berg...@xpdnt.com wrote: Just downloaded the 3.8.1007 build, the /layout option starts to download, but

[WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-07 Thread Matt O'Connell
Hi, I've recently switched from using build cmd files to trying to use votive/VS2012 and have run in to a slight issue trying to do something that was a lot easier when it was all in cmd files. (Not sure if this is a msbuild or WiX issue):I have a WiX Setup project in vs2012 (WiX3.7) that I

Re: [WiX-users] WiX 3.8.1007 /layout switch fails

2013-10-07 Thread John H Bergman (XPedient)
Working now, must have been a transient issue. (Thanks) -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Monday, October 7, 2013 3:46 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.8.1007 /layout switch fails

[WiX-users] forcing packages to be cached in a custom BA

2013-10-07 Thread Dave Andersen
I posted this question on Stack Overflow, but it hasn't gotten any responses yet: http://stackoverflow.com/questions/19058733/force-caching-of-compressed-packages-in-a-wix-custom-bootstrapper-application

Re: [WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-07 Thread Blair Murri
Yes, that can be done. In fact, I did it last month. Someone knowledgeable with MSBuild would be able to set that up in a short time. In fact, that other project could build all or any combination of lang/bitness you want in one invocation. The rest (of us) buy the book