Re: [WiX-users] Standard bootrapper with Wix - how to specify relative paths

2012-05-01 Thread Neil Sleightholm
Are you supplying the MsiPackage/@Name and MsiPackage/@ SourceFile attributes? Name - The destination path and file name for this chain payload. SourceFile - Location of the package to add to the bundle. Neil -Original Message- From: Uma Harano [mailto:uhar...@esri.com] Sent: 30 April

[WiX-users] WixBundleLog missing from Burn Built-in Variables doc page?

2012-05-01 Thread Bruce Cran
Should WixBundleLog be documented on http://wix.sourceforge.net/manual-wix3/bundle_built_in_variables.htm ? -- Bruce Cran -- Live Security Virtual Conference Exclusive live event will cover all the ways today's

[WiX-users] Can I get the location of setup log files from my BA?

2012-05-01 Thread stewarth
Using Burn, my setup generates 2 log files, one from the bundle and one from an msi. If my install fails, i'd like to display some sort of 'see this log file: logfilename' so users will know what to send to us, and during test i dont have to keep reminding people where to look (!) So, from my BA

Re: [WiX-users] Can I get the location of setup log files from my BA?

2012-05-01 Thread stewarth
stewarth wrote Using Burn, my setup generates 2 log files, one from the bundle and one from an msi. If my install fails, i'd like to display some sort of 'see this log file: logfilename' so users will know what to send to us, and during test i dont have to keep reminding people where to

Re: [WiX-users] Can I get the location of setup log files from my BA?

2012-05-01 Thread Bruce Cran
On 01/05/2012 14:57, stewarth wrote: Argh. As i clicked post i thought 'i wonder if i can do this...' and it worked. Engine.StringVariables[WixBundleLog] You can also use the BalFormatString function to substitute any variables embedded in strings with the value - e.g. A log file has been

Re: [WiX-users] Standard bootrapper with Wix - how to specify relative paths

2012-05-01 Thread Uma Harano
Thanks Neil! I added SourceFile attribute and it works great now! -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: Monday, April 30, 2012 11:23 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Standard bootrapper with Wix -

Re: [WiX-users] WiX support for (gulp!) WinNT4

2012-05-01 Thread Rob Mensching
All versions of WiX can generate MSIs targeting any version of Windows Installer. However, you will have to be very careful about using WiX toolset custom actions (usually via Extensions) because we compile against the latest security approved CRTs which sets our minimum OS level to what is still

[WiX-users] Building WiX from source

2012-05-01 Thread Hoover, Jacob
As we now have a 3.6 RC0, I wanted to take another stab at burn. When I attempt to build on a clean machine (Win 7 x64) with just VS2010, the 6.1 and 7.1 SDK, and NAnt I keep getting errors like: [exec] Microsoft (R) Build Engine Version 3.5.30729.5420 [exec] [Microsoft .NET

[WiX-users] WiX (*.wxl) support at Transifex

2012-05-01 Thread chefkoch
Hi all, At first I would like to introduce myself. I am member of Team MediaPortal, an opensource media center. For our next major version MediaPortal 2 which is completely re-written from scratch we are using WiX for our installer instead of NSIS, which we used for 1.x versions. Thanks for this

[WiX-users] RegistrySearch value created by first msi as input to second msi in chain

2012-05-01 Thread Brian C
All,   I have what appears to be a simple chained install using burn, where I would like to do a RegistrySearch to read a key created by the first msi, and use that to install the second msi to a subfolder of that location.  The first S3DInstallation.msi has its’ own GUI which is run and

[WiX-users] WiX Warning - CoreCompile does not exist

2012-05-01 Thread John H Bergman (XPedient)
After upgrading to RC0, I have started receiving this warning message in the Wix Fragment projects. Warning 5 The target CoreCompile does not exist in the project. C:\Program Files

Re: [WiX-users] Standard bootrapper with Wix - how to specify relative paths

2012-05-01 Thread Uma Harano
Hi, I think I am missing something in understanding how the bootstrapper works. When I launch the setup.exe bootstrapper - I see that it is caching the msi package under C:\Documents and Settings\All Users\Application Data\Package Cache\. But the way I want it to work is as follows: My media

Re: [WiX-users] building a custom bootstrapper application from wixstdba

2012-05-01 Thread Bob Arnson
On 30-Apr-12 10:17, jean claude klodjan wrote: - is it possible to generate abal:WixStandardBootstrapperApplication/ element, which would use a custom BA.dll ? Yes. It's permitted under a BootstrapperApplicationRef element, so you'll need a separate BootstrapperApplication for your custom BA.

Re: [WiX-users] Bundle failing to build after upgrading to latest release (3.6.2823)

2012-05-01 Thread Bob Arnson
On 30-Apr-12 11:10, Pally Sandher wrote: Unfortunately still happens with 3.6.2328.0. Heath's fix came in v3.6.2830.0. -- sig://boB http://joyofsetup.com/ -- Live Security Virtual Conference Exclusive live event will

Re: [WiX-users] WiX support for (gulp!) WinNT4

2012-05-01 Thread Bob Arnson
On 01-May-12 11:17, Rob Mensching wrote: I bet you're using the WixUI and that has a custom action in it to verify paths. You'll have to hack that out (basically, create your own UI) to get it all to run on NT4. See wix.chm on WIXUI_DONTVALIDATEPATH for how to skip validation. -- sig://boB

Re: [WiX-users] Pass data into localization wxl file

2012-05-01 Thread Bob Arnson
On 28-Apr-12 17:03, Kristjan Laane wrote: Thanks for the info Bob - but what determines whether a localized string is formatted or not? Whether it appears in a field that's documented as being formatted. Many fields are but some are required to be string literals and aren't formatted, so

Re: [WiX-users] Standard bootrapper with Wix - how to specify relative paths

2012-05-01 Thread Bob Arnson
On 01-May-12 19:18, Uma Harano wrote: But the way I want it to work is as follows: My media has a Setup.exe. At this level, I have a support folder that contains the msi package that I want to bootstrap. So I want the Setup.exe to launch the msi from this Support folder. Burn doesn't work

Re: [WiX-users] RegistrySearch value created by first msi as input to second msi in chain

2012-05-01 Thread Bob Arnson
On 01-May-12 16:34, Brian C wrote: I have what appears to be a simple chained install using burn, where I would like to do a RegistrySearch to read a key created by the first msi, and use that to install the second msi to a subfolder of that location. Burn doesn't support that today. All