Re: [WiX-users] "Condition" problem

2014-12-05 Thread Marek Mielcarek
I agree - all you said is very true. ‎ However, as I am sure you know, there is always more to the music than eye can see... there was an old contract between previous guy and information systems that installer failure should demonstrate as full-stop of the process. They can detect that through

Re: [WiX-users] "Condition" problem

2014-12-05 Thread Marek Mielcarek
you need to block an installation post-CostFinalize use a conditioned error custom action. LaunchConditions is not scheduled late enough. Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Frid

Re: [WiX-users] "Condition" problem

2014-12-05 Thread Marek Mielcarek
Yes, except that "Condition" ‎cannot use "Message" when placed inside Feature. ‎I already said that I tried it before even sending question to the group. Original Message From: Pavan Konduru Sent: Friday, December 5, 2014 12:18 To: General discussion about the WiX toolset. Reply To: General di

Re: [WiX-users] "Condition" problem

2014-12-05 Thread Marek Mielcarek
sense how the message is related to the condition? This will pop up a message and stop the installation. This installer will never complete until the condition is met. On Thu, Dec 4, 2014 at 8:56 PM, Marek Mielcarek wrote: > I appreciate your help. The problem is that the installer is mainly

Re: [WiX-users] "Condition" problem

2014-12-04 Thread Marek Mielcarek
on to exit dialog. 1 -Original Message----- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Thursday, December 04, 2014 3:06 PM To: wix-users@lists.sourceforge.net; General discussion about the WiX toolset. Subject: Re: [WiX-users] "Condition" problem Example:

Re: [WiX-users] "Condition" problem

2014-12-04 Thread Marek Mielcarek
depend on? -Original Message----- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Thursday, December 04, 2014 2:28 PM To: wix-users@lists.sourceforge.net; General discussion about the WiX toolset. Subject: Re: [WiX-users] "Condition" problem User can select any feature

Re: [WiX-users] "Condition" problem

2014-12-04 Thread Marek Mielcarek
before a feature is selected for install? -Original Message- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Thursday, December 04, 2014 12:13 PM To: General discussion about the WiX toolset. Subject: [WiX-users] "Condition" problem I need to define a Condition whi

[WiX-users] "Condition" problem

2014-12-04 Thread Marek Mielcarek
I need to define a Condition which generates message and stops installation (if condition fails). This Condition makes sense only if a particular Feature is being installed. It looks like I cannot use standard LaunchCondition because checking for a Feature (using &Feature=3 or &Feature=4) can be

Re: [WiX-users] calling regasm.exe from Wix installer on Win 2012

2014-07-03 Thread Marek Mielcarek
Install Engineer - ESA Jack Henry & Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434 x791011 jocoo...@jackhenry.com www.jackhenry.com -Original Message- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Thursday, July 3, 2014 9:42 AM To: General discussion ab

Re: [WiX-users] calling regasm.exe from Wix installer on Win 2012

2014-07-03 Thread Marek Mielcarek
poor over the long term. Many things are superficially easier to execute in the short term, but the long term costs can be high. -- John Merryweather Cooper Build & Install Engineer - ESA Jack Henry & Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434 x791011 jocoo...@

Re: [WiX-users] calling regasm.exe from Wix installer on Win 2012

2014-07-03 Thread Marek Mielcarek
Phill, Thank you for the hint. I am aware of using heat for registering COM however I find calling regasm immensely easier and better way. If you have dedicated resource with nothing on the neck but just playing with WiX, using heat is probably fine. In my case WiX is just a very small fragment

[WiX-users] calling regasm.exe from Wix installer on Win 2012

2014-07-02 Thread Marek Mielcarek
Wix custom action executes regasm.exe with .NET dll as parameter. This works perfectly on Win7 and Win2008. On WinServer 2012 the same code does not register COM/interop server (the dll file is definitely present when the action executes). The installer runs in the same way on all systems (same

Re: [WiX-users] simple re-packaging of a 3rd party redistributable -- fixed link to screen shot

2014-06-15 Thread Marek Mielcarek
. Any help is greatly appreciated, thank you, Andy Moyer -Original Message- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Sunday, June 15, 2014 6:55 PM To: wix-users@lists.sourceforge.net; 'wix-users@lists.sourceforge.net' Subject: Re: [WiX-users] simple re-packagin

Re: [WiX-users] simple re-packaging of a 3rd party redistributable -- fixed link to screen shot

2014-06-15 Thread Marek Mielcarek
‎I am sorry, I hit "sent" before finishing the answer. A vanilla/plain ‎version of your problem goes like trhis: "how to install a 3rd party distributable using click-once deployment". As I already pointed before, this is ‎is security issue. You can deliver (virtually) any binary to users host

Re: [WiX-users] simple re-packaging of a 3rd party redistributable -- fixed link to screen shot

2014-06-15 Thread Marek Mielcarek
Hi Andy, if I understand your request correctly then it should not be a problem from wix/msi perspective. However , the real issue is that you want to push the installation of your 3rd party piece via click-once deployment. To be completely clear and honest, building wix/msi wrapper will not

Re: [WiX-users] Register a .NET DLL in a COM+ Application - Could not install type library...

2014-04-10 Thread Marek Mielcarek
Yes, you need to define custom action "Execute". Here is what works for me: (1)define custom action that executes RegAsm.exe; example: (2)schedule the action (1) in your , something like this: Few notes: (a)the example uses RegAsm from framework v4 but you can modify to

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-09 Thread Marek Mielcarek
-digitally-sign-bootstrapper-project Carter Quoting Marek Mielcarek : > Thank you for all the answers. The thing I try to do is signing MSI > after it is fully cooked by WiX. To do so, I have a post-build event > that uses signtool utility which seats in $(FrameworkSDKDir) folder. > > I

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-09 Thread Marek Mielcarek
Thank you for all the answers. The thing I try to do is signing MSI after it is fully cooked by WiX. To do so, I have a post-build event that uses signtool utility which seats in $(FrameworkSDKDir) folder. I understand and respect all the remarks about "WiX is not .net". However, in my humble

[WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-08 Thread Marek Mielcarek
I need a path to SDK framework in post-build event. Standard VisualStudio projects support $(FrameworkSDKDir) macro but WiX 3.7 does not. Does WiX 3.8 bring support for this macro ? If not, what's the best way to get that path (aside from hard-coding) ? Thank you ---

Re: [WiX-users] relationship between components and features

2014-01-30 Thread Marek Mielcarek
-Original Message- From: Nicolás Alvarez [mailto:nicolas.alva...@gmail.com] Sent: Wednesday, January 29, 2014 7:03 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] relationship between components and features 2014-01-29 Marek Mielcarek : > Please take a look

[WiX-users] relationship between components and features

2014-01-29 Thread Marek Mielcarek
Please take a look at this pseudo-code that represents my WiX xml: ... My intention was to run/schedule CA1 only for Feature1 and CA2 for Feature2 respectively. To my surprise, when the installer runs with only one feature enabled (ADDLOC

Re: [WiX-users] finding out what features are being installed

2014-01-29 Thread Marek Mielcarek
les) or when using the MsiEvaluateCondition() function in a CA, or more directly by using the MsiGetFeatureState() function in a CA. Blair From: Marek Mielcarek Sent: ‎Monday‎, ‎January‎ ‎27‎, ‎2014 ‎3‎:‎06‎ ‎PM To: General discussion for Windows Installer XML toolset. To learn what featu

[WiX-users] finding out what features are being installed

2014-01-27 Thread Marek Mielcarek
To learn what features are being installed I try to examine ADDLOCAL which is a standard parameter that can be passed to MSI. I use the following line in my WiX xml to do that: Then, inside InstallExecuteSequence element I am scheduling custom action which uses my local FEATURELIST property.

Re: [WiX-users] merging multiple WiX projects

2014-01-07 Thread Marek Mielcarek
Phill, I did the conversion of MSIa so they are 100% UI-free. Would you please be able to provide a simple xml example of "bundle" project which combines such MSIs into single installation package ? Thanks a lot -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent:

[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] multiple immediate Quiet Execution custom actions

2014-01-03 Thread Marek Mielcarek
, KS  66227 Office:  913-341-3434 x791011 jocoo...@jackhenry.com www.jackhenry.com -Original Message- From: Marek Mielcarek [mailto:mmielca...@actuate.com] Sent: Friday, January 3, 2014 1:20 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] multiple immediate Quiet Execution custo

[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