Re: [WiX-users] Progress Bar problem

2014-01-03 Thread Nicolás Alvarez
El jueves, 2 de enero de 2014, Ravishankar escribió: > Hi, > I have build a msi with 6000+ files(out of which 4500 dll files). > When i extract using Heat.exe nearly 600,000+ lines of code are > generated and including all these LoC in one single wxs file is not > possible, it is throwing 'Out Of

Re: [WiX-users] Help passing properties to Rollback custom action.

2014-01-03 Thread Nicolás Alvarez
El viernes, 20 de diciembre de 2013, escribió: > Hello, > > I have a custom action that moves some deprecated files from an > old install to a temp directory during a major upgrade and I have another > custom action to move them back that runs only during roll back. I am > having trouble a

Re: [WiX-users] Invoking batch file

2014-01-03 Thread Phill Hogland
FYI Devcon.exe is not redistributable. You might want to consider a different approach. http://support.microsoft.com/kb/311272/en-US -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Invoking-batch-file-tp7591572p7591577.html Sent from the wix-user

[WiX-users] multiple immediate Quiet Execution custom actions

2014-01-03 Thread Marek Mielcarek
I need to invoke Quiet Execution Custom Action multiple times in the immediate sequence. There is a web help content available but no examples. I tried this: WiX compiler fails with "The CustomAction/@DllEntry attribute

Re: [WiX-users] multiple immediate Quiet Execution custom actions

2014-01-03 Thread John Cooper
You can't have the Property and Value attributes in the executing call. You need to separate them per the example in the Wix.chm (look under "Standard Custom Actions): . . . You can use an appropriately scheduled element instead of the static element above. Note that an immediate

Re: [WiX-users] multiple immediate Quiet Execution custom actions

2014-01-03 Thread Marek Mielcarek
Thank you very much. I've got it working by setting the value of "QtExecCmdLine" with I appreciate your help. Marek -Original Message- From: John Cooper [mailto:jocoo...@jackhenry.com] Sent: Friday, January 03, 2014 2:46 PM To: General discussion about the WiX toolset. Subject: Re: [WiX

[WiX-users] merging multiple WiX projects

2014-01-03 Thread Marek Mielcarek
What is the best strategy for merging multiple working WiX projects into single installer ? Thank you. -- Rapidly troubleshoot problems before they affect your business. Most IT organizations don't have a clear picture o

Re: [WiX-users] merging multiple WiX projects

2014-01-03 Thread Rob Mensching
Bundle. -Original Message- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Friday, January 3, 2014 4:21 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] merging multiple WiX projects What is the best strategy for merging multiple working WiX projects into single i

Re: [WiX-users] merging multiple WiX projects

2014-01-03 Thread Phill Hogland
The way I do it is to create each MSI ('setup' project in VS) without defining a UI. I just focus on getting the functionality of each MSI working. Then create a 'bootstrapper' project (or bundle) and add the MsiPackage element for each MSI into the chain. -- View this message in context: h

Re: [WiX-users] selectively upgrading a package in burn

2014-01-03 Thread Nicolás Alvarez
2014/1/2 Dave Andersen : > Hello WiX users, > > I tried sending this message via Nabble earlier, but I sent it to the wrong > group and later tried to "move" it, but I think it just dropped into the > void. Apologies if this is a duplicate message. > > I am developing a custom burn bootstrapper app

[WiX-users] Patching strategy

2014-01-03 Thread KG
I am implementing a new installer for a product that needs to include several GB of data. I'm planning on having a single MSI for the application, several MSIs for the data, and using burn to chain everything together. The data will change periodically and updates will be delivered online, so pat