Re: [WiX-users] Multiple entries in ARP

2012-08-24 Thread Rob Mensching
Unless you have addons or patches or raw detection RelatedBundle elements you can be sure that's it. It is too bad we didn't pass the relation type to that callback. I think that's something we can add in WiX v3.7. The relation type would make it crystal clear. On Fri, Aug 24, 2012 at 2:37 PM, Nei

Re: [WiX-users] Multiple entries in ARP

2012-08-24 Thread Neil Sleightholm
Possibly, but BOOTSTRAPPER_RELATED_OPERATION_NONE is the default in this function so it can mean other things. Neil -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: 24 August 2012 21:33 To: General discussion for Windows Installer XML toolset. Subject: Re: [Wi

Re: [WiX-users] Download external Installers

2012-08-24 Thread Rob Mensching
The WiX toolset does this it's bundle. See wix36 src\Setup\Bundle\Bundle.wxs On Fri, Aug 24, 2012 at 11:23 AM, Jared Jennings wrote: > It appears in some of the newer releases of WiX that you can download an > external installer and launch that installer. I haven't been able to find > any docs or

Re: [WiX-users] MBA ExecuteFilesInUse vs Error

2012-08-24 Thread Rob Mensching
File in use comes back from the Windows installer. If the Windows installer (and it uses Restart Manager quite a bit for this) recognizes the file in use, you should get that callback. I'm not sure they'll recognize a text file held in use by a program. Try running your program and then installin

Re: [WiX-users] Multiple entries in ARP

2012-08-24 Thread Rob Mensching
Right so the operation for a related bundle upgrade with the same version is: BOOTSTRAPPER_RELATED_OPERATION_NONE. On Wed, Aug 22, 2012 at 8:12 AM, Neil Sleightholm wrote: > Thanks. I think that it is too late in that function, it seems the > comparison is in the engine. Looking at the code I thi

Re: [WiX-users] Assistance with Burn

2012-08-24 Thread Wesley Manning
Burn puts log files in %temp%. To go to %temp% type %temp% in the start menu search box (or run box if you have Windows XP) and it will take you there. You're other questions I don't know. Wes -Original Message- From: Jeanne Dixon [mailto:jdi...@cots.com] Sent: August-24-12 3:12 PM

[WiX-users] How to make a library with configurable binaries (bitmaps, etc)

2012-08-24 Thread Javier Castro
Hi!: I'm starting with Wix. I already have a library project (Library.wxs) where i defined my base UIs for all my installer projects. Here i've defined something like: http://schemas.microsoft.com/wix/2006/wi";> ... ... My idea was being able to

[WiX-users] MBA ExecuteFilesInUse vs Error

2012-08-24 Thread John M. Wright
I'm using wix 3.6 RC and have created a managed boot loader. Based on the xml comments in BootstrapperApplication.cs, I expected the ExecuteFilesInUse event to be raised in the case a file in my .msi is currently locked. However, what I'm actually seeing is the Error event firing with the followin

[WiX-users] Download external Installers

2012-08-24 Thread Jared Jennings
It appears in some of the newer releases of WiX that you can download an external installer and launch that installer. I haven't been able to find any docs or examples. Can someone provide an example or link? Example: I want to download the GTK installer and launch the MSI-based install. -Jared -

[WiX-users] Assistance with Burn

2012-08-24 Thread Jeanne Dixon
I have been attempting to make simple changes to the theme of my burn application. Most of this has been easy, but I am now running into a few things that I can't seem to find simple answers to. First, if the user cancels the install from my bootstrap, it shows that the install failed and gives

Re: [WiX-users] WiX joins the Outercurve Foundation

2012-08-24 Thread Rob Mensching
IANAL but "Nothing" is the intention. See 5th paragraph and last multi-line paragraph here: http://robmensching.com/blog/posts/2012/8/20/The-WiX-toolset-license (I should have numbered the paragrpahs ) On Fri, Aug 24, 2012 at 7:24 AM, Peter Hull wrote: > Thanks, that does help. If I could just

Re: [WiX-users] How do I install to LocalAppData folder?

2012-08-24 Thread Pally Sandher
I wouldn't recommend circumventing Windows Installer practices just because you refuse to do things the correct way. As Rob said it's explained how to work with per-user components in http://wix.sourceforge.net/manual-wix3/create_start_menu_shortcut.htm Palbinder Sandher Software Platform Engin

Re: [WiX-users] WiX joins the Outercurve Foundation

2012-08-24 Thread Peter Hull
Thanks, that does help. If I could just ask the question slightly differently: If I modified the WiX source, as I understand it, I would need to licence my changed WiX source under MS-RL and make it freely available. If I downloaded a binary of the WiX toolset and then used that toolset (unchang

Re: [WiX-users] .Net assembly component guid

2012-08-24 Thread Peter Shirtcliffe
If the new version is backwardly compatible with the old version, then the component hasn't really changed (in MSI terms) and the guid stays the same. If the new version breaks compatibility, then it's really a new component and should have a new guid (and new filename or location). -Original

Re: [WiX-users] How do I install to LocalAppData folder?

2012-08-24 Thread Natalie Carr
Was going to suggest what I did, by setting the value of "ProgramFilesFolder" to "LocalAppDataFolder" but I see on StackOverflow that you figured that one out..:) -Original Message- From: Rob Hamflett [mailto:rob_hamfl...@sn.scee.net] Sent: 24 August 2012 12:00 To: wix-users@lists.sourcef

Re: [WiX-users] How do I install to LocalAppData folder?

2012-08-24 Thread Rob Hamflett
You can either suppress it with the -sice flag, or check out the "How To: Create a Shortcut on the Start Menu" section from the manual as it covers the same ground. Rob On 24/08/2012 05:35, Huang, Deqing wrote: > Hi All, > I'd like to install my app to %LocalAppData% folder. > Following directo

Re: [WiX-users] CopyFiles at the start oif installation

2012-08-24 Thread Neil Sleightholm
It seems an odd requirement to edit the files before the install, could you not install it and then provide a config editor that runs after the install? Neil -Original Message- From: Natalie Carr [mailto:natalie.c...@measuresoft.com] Sent: 24 August 2012 11:09 AM To: 'General discussion

[WiX-users] .Net assembly component guid

2012-08-24 Thread Parkes, Kevin
If I update my installer to include a new version of a .Net assembly, should I change the guid of the component containing the DLL? Thanks -- Live Security Virtual Conference Exclusive live event will cover all the ways t

Re: [WiX-users] CopyFiles at the start oif installation

2012-08-24 Thread Natalie Carr
Thanks Neil, Do you know of any other ways that my user could edit these files and for them to be accessed via the MSI? I can propose a different solution if I am able to create it. Natalie -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: 24 August 2012 10:41 T

Re: [WiX-users] Can a wixlib contain a theme file? (second attempt)

2012-08-24 Thread Peter Shirtcliffe
I can give you a sample for the theme file. The lib. licence The reference to the lib. -

Re: [WiX-users] CopyFiles at the start oif installation

2012-08-24 Thread Neil Sleightholm
If I understand correctly you are trying to copy files at install time from the same folder as the MSI - as far as I am aware this is not possible, there may be a way to find the MSI source folder but I don't know what it is (TARGETDIR is not the location of the MSI) and if you did find it it wo

[WiX-users] CopyFiles at the start oif installation

2012-08-24 Thread Natalie Carr
Hi, Majorly stuck on this issue. I have a INI and REG file stored in the same location as my MSI file which is TARGETDIR as far as I am aware. I have to copy these files to C:\TEMP at the start of the install, I know WIX can use INI and REG files but this is a requirement that I have to meet.

Re: [WiX-users] How do I install to LocalAppData folder?

2012-08-24 Thread Pally Sandher
LocalAppDataFolder is perfectly acceptable. The ICE38 error is telling you that you need to change the KeyPath for your components to be compliant with Windows Installer expected behaviour. It sounds to me like you've written a per-machine package & are trying to turn it into a per-user package

Re: [WiX-users] How do I install to LocalAppData folder?

2012-08-24 Thread Peter Shirtcliffe
This is my own, admittedly inexpert, understanding of per-user installations: Installing to subdirectory of LocalAppDataFolder is perfectly OK in a per-user MSI. Because of certain scenarios relating to roaming users, you need to add components containing elements for any directories you create u

[WiX-users] XsdGen - supporting xml PI and extensions(xmlns)

2012-08-24 Thread tom
I am using CodeDomReader in order to de serialize wix object And object.OutputXml(..) in order to serialize I have 2 issues 1. XML Processing Instruction are not preserved 2. xmlns deceleration for custom extensions are not preserved before changing XsdGen .. am I missing some class in wix?

Re: [WiX-users] Can the per-user path configurable in WixUI_Advanced ?

2012-08-24 Thread Huang, Deqing
Just found that by following the path can be changed: Regards, Deqing > -Original Message- > From: Huang, Deqing [mailto:deqing.hu...@intel.com] > Sent: Friday, August 24, 2012 15:37 > To: General discussion for Windows Installer XML toolset. > Subject: [WiX-users] Can the per-user

[WiX-users] Can the per-user path configurable in WixUI_Advanced ?

2012-08-24 Thread Huang, Deqing
By using WixUI_Advanced Dialog, for a per-user installation we can have the default installation location [LocalAppDataFolder]Apps\[ApplicationFolderName]. Can we change the installation location? The requirement I had is asking to install to [LocalAppDataFolder]\[ApplicationFolderName] Is thi

Re: [WiX-users] WiXVSExtension for Visual Studio 11

2012-08-24 Thread Rob Hamflett
On 21/08/2012 16:22, Rob Mensching wrote: > Already does, looks like the documentation needs updating. Feel free to > find a doc bug. Done. https://sourceforge.net/tracker/?func=detail&aid=3561219&group_id=105970&atid=642714 Thanks, Rob ---

[WiX-users] Can a wixlib contain a theme file? (second attempt)

2012-08-24 Thread Christian Hausknecht
Hello folks, is it possible to create a wixlib that holds a theme file and a localization file? I have to build two different burn-bundles, one for a server installation (already finished) and one for the corresponding client. Both share some logic, as common prerequisits for example. But also

[WiX-users] Can a wixlib contain a theme file?

2012-08-24 Thread Christian Hausknecht
Hello folks, is it possible to create a wixlib that holds a theme file and a localization file? I have to build two different burn-bundles, one for a server installation (already finished) and one for the corresponding client. Both share some logic, as common prerequisits for example. But also

[WiX-users] Can a wixlib contain a theme file?

2012-08-24 Thread Christian Hausknecht
Hello folks, is it possible to create a wixlib that holds a theme file and a localization file? I have to build two different burn-bundles, one for a server installation (already finished) and one for the corresponding client. Both share some logic, as common prerequisits for example. But also