Re: [WiX-users] Speed up installer for copy file using Heat

2013-05-15 Thread Marco Tognacci
Yes, it could be possible to make an extension for changing the Ids as they report location path, as the file will be ordered in the MSI table grouped by their directory location?Or is there a way for naming the Ids generated by heat as to report the directory path?My old Installation made by In

Re: [WiX-users] Response file for silent installation [P]

2013-05-15 Thread Marco Tognacci
Yes In the Custom Managed BA I always need to configure the UI as to set user choices in a variable perhaps attaching a property to the WixVariable such as responsable="true", but the Wix burn could make all the other job:Storing this kind of variables in xml file of configuration and stop insta

Re: [WiX-users] Response file for silent installation [P]

2013-05-15 Thread Hoover, Jacob
I had discussed something similar to this a while back, utilizing an INI file to pre-populate variables that were override able. I guess this would be taking it to the next step and allowing one to record the users choices. It would be a bit difficult as you would probably only want to record t

Re: [WiX-users] Response file for silent installation [P]

2013-05-15 Thread Rob Mensching
That would be a BootstrapperApplication feature and the wixstdba doesn't implement anything like that today. It'd be a cool feature, although it'd also have to be tailored to each custom BA probably since you can do just about anything your own BA. On Wed, May 15, 2013 at 12:54 PM, Marco Tognacci

Re: [WiX-users] WinRt/Metro App Sideloading installer

2013-05-15 Thread Rob Mensching
Yes. Something to do. Haven't seen a lot of discussion about it yet, though. On Wed, May 15, 2013 at 1:27 PM, Kevin Anthony wrote: > Is there plans in the future to include sideloading of windows > Runtime/Metro style apps? > > Thank you > Kevin > > Kevin Anthony > > > --

[WiX-users] WinRt/Metro App Sideloading installer

2013-05-15 Thread Kevin Anthony
Is there plans in the future to include sideloading of windows Runtime/Metro style apps? Thank you Kevin Kevin Anthony -- AlienVault Unified Security Management (USM) platform delivers complete security visibility with

Re: [WiX-users] Speed up installer for copy file using Heat

2013-05-15 Thread Daniel Madill
I think he wants the component Ids to be such that if the component Ids are sorted alphabetically then they end up in the same order as the files themselves when the files are sorted alphabetically. Dan -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: May-15-

Re: [WiX-users] Speed up installer for copy file using Heat

2013-05-15 Thread Neil Sleightholm
You shouldn't need to do this as WiX takes care of it for you, the files are stored in the cab in alphabetical order no matter what order they are in you source. Neil -Original Message- From: Marco Tognacci [mailto:mark...@live.it] Sent: 15 May 2013 21:03 To: wix-users@lists.sourceforg

[WiX-users] Speed up installer for copy file using Heat

2013-05-15 Thread Marco Tognacci
I have used heat for harvest the files to install in my application. I have read that to make install of file faster the Ids of the files that are located in the same forder must be alphabetically consecutive so that they will be installed in sequence, so is there some optimization for generatin

Re: [WiX-users] Response file for silent installation [P]

2013-05-15 Thread Marco Tognacci
I know that I can parse the command line parameters in Burn Managed UI and doing all that I want, I was thinking about if is there yet some feature implemented in Wix burn for this purpose.We used this feature in InstallShield, it is very usefull, as we have an installer with many user choises s

Re: [WiX-users] Response file for silent installation

2013-05-15 Thread Christopher Painter
Correct. Response files are used by InstallScript project and InstallScript MSI projects. They are not relevant to Basic MSI projects. FWIW, it's not very good. From: "Chad Petersen" Sent: Wednesday, May 15, 2013 1:21 PM To: "General discussion for

Re: [WiX-users] WIX Continues Uninstall After Failing To Close Application Causing Application to Crash

2013-05-15 Thread Jeremiahf
Are you using the CloseApplication element? http://wix.sourceforge.net/manual-wix3/util_xsd_closeapplication.htm J On Wed, May 15, 2013 at 2:40 AM, Saeed, Rehan wrote: > When closing my application it prompts users to save any unsaved > information. When installing a new version of my appli

Re: [WiX-users] WIX Continues Uninstall After Failing To Close Application Causing Application to Crash

2013-05-15 Thread Phil Wilson
A) What exactly does "installing a new version of my application" mean? Is it a patch, a major upgrade, an update by reinstalling the new MSI file? B) It's not clear to me why the application (apparently randomly) prompts to save information. We can assume it's closing down, but if the install re

Re: [WiX-users] Response file for silent installation [P]

2013-05-15 Thread Steven Ogilvie
Classification: Public If you want to run your MSI with specific properties set (like you would creating a response file from InstallShield) you can run it as: MSIEXEC.EXE /I mymsi.msi MYPROPERTY=AValue MYOTHERPROPERTY=SomeOtherValue SOMECONTROL=1 /quiet These properties via the command line wo

Re: [WiX-users] Response file for silent installation

2013-05-15 Thread Chad Petersen
Look at what you pointed to. It's an article from 2006 dealing with InstallSheild 12 (NOT 2012) so it is very old. Some of it still applies to older projects but I don't think that applies to a Basic MSI project. If you run your MSI with MSIEXEC.EXE command line parameters to generate a verbose

[WiX-users] 64 bit registration of COM visible .NET dlls built Any CPU

2013-05-15 Thread Brian C
    Hello all,   Just thought I would post this in case anyone else might have the same problem.  Our installer consists of a 32 bit install, which delivers most files, including some COM visible .Net assemblies.  We also have a 64 bit installer which, for now, delivers some 64 bit functiona

Re: [WiX-users] CA Error with MBA

2013-05-15 Thread Nick Miller
Nope, here is my CA reference: ... NOT Installed -Original Message- From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] Sent: Wednesday, May 15, 2013 1:39 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] CA Error with MBA Ok, so

Re: [WiX-users] CA Error with MBA

2013-05-15 Thread Hoover, Jacob
Ok, so it sounds like you have a managed CA and that you are catching the exception and are returning the correct result. Then the question is how are you referencing the CA from your MSI? On your CustomAction element, do you have Return="ignore" by chance? -Original Message- From: Ni

[WiX-users] Response file for silent installation

2013-05-15 Thread Marco Tognacci
Is there any way for recording user choise, to generate a file to use for running the setup in silent mode like InstallShield do with -r command line parameter? as explained in the help reported in the link http://kb.flexerasoftware.com/doc/Helpnet/installshield12helplib/CreatetheResponseFile.htm

[WiX-users] When creating a patch the custom action binary and referenced custom actions are not included

2013-05-15 Thread Sharon Pierson
I am trying to create a patch that includes the custom action dll. The patch includes a new custom action that is specific to the patch. The installation files are included in the patch as expected. The binary, the added custom actions and the added property are missing. The patch source loo

Re: [WiX-users] CA Error with MBA

2013-05-15 Thread Nick Miller
HI Jacob, Yes, I wrote the CA myself, its pretty simple, it changes some values in an INI file based on choices the user makes during the install. I have several custom actions that do different things, and I found that if any of them fail it does not return an error to my MBA. I broke this o

Re: [WiX-users] CA Error with MBA

2013-05-15 Thread Hoover, Jacob
Not enough information in what you have provided to give you more info... Did you write this CA yourself? What does the CA do? Do you have logging turned on for the CA? To me, it sounds more like the CA is crashing and not actually sending an error back to the BA. Debug the CA to identify the

Re: [WiX-users] CA Error with MBA

2013-05-15 Thread Nick Miller
Anyone have any ideas? -Original Message- From: Nick Miller [mailto:nmil...@livetechnology.com] Sent: Tuesday, May 14, 2013 11:09 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] CA Error with MBA Tried looking for Result.Error, and InstallMessage.Err

[WiX-users] localized variable unknown for fr-FR, it-IT and some other cultures

2013-05-15 Thread Gauri Kshirsagar
Hi, I am using Wix Toolset v3.7. Using VS 2010 I am trying to build a .wxs project and trying to generate localized versions of msi. It is working for en-US, ja-JP, de-de. If i add a file for fr-FR or it-IT or es-ES cultures I get below error 12>E:\delivery\Dev\wix37_public\src\ext\UtilExtension\

[WiX-users] WIX Continues Uninstall After Failing To Close Application Causing Application to Crash

2013-05-15 Thread Saeed, Rehan
When closing my application it prompts users to save any unsaved information. When installing a new version of my application while it is running the following occurs: 1. Start application. 2. Install new version from WIX MSI in quiet mode (No UI). 3. Application prompts to save unsaved

[WiX-users] WIX Continues Uninstall After Failing To Close Application Causing Application to Crash

2013-05-15 Thread Saeed, Rehan
When closing my application it prompts users to save any unsaved information. When installing a new version of my application while it is running the following occurs: 1. Start application. 2. Install new version from WIX MSI in quiet mode (No UI). 3. Application prompts to save unsaved