Re: [WiX-users] Quick question about WiXCA - CAQuietExec

2013-10-02 Thread TimM
Thanks, at first it did not seem to work as the calling app did have failures and they did not cause the install to fail, but then we had another error that did fail the install. So we figured that some returns were not a complete failure and therefore the return did not cause an install failur

Re: [WiX-users] Quick question about WiXCA - CAQuietExec

2013-10-02 Thread Blair Murri
Any text written by the app (both stdout and stderr) is written to the log, and any non-zero exit code is interpreted as a failure causing CAQuietExec to also return a failure. > Date: Tue, 24 Sep 2013 10:45:53 -0700 > From: timmay...@smarttech.com > To: wix-users@lists.sourceforge.net > Subjec

Re: [WiX-users] Quick Question

2013-07-03 Thread Blair Murri
++ libs) to parse/extract the CustomActionData make sure you use the companion APIs to build the property's value (and visa versa). > From: jacob.hoo...@greenheck.com > To: wix-users@lists.sourceforge.net > Date: Tue, 2 Jul 2013 16:42:02 +0000 > Subject: Re: [WiX-users] Quick Qu

Re: [WiX-users] Quick Question

2013-07-02 Thread Hoover, Jacob
- From: Nick Miller [mailto:nmil...@livetechnology.com] Sent: Tuesday, July 02, 2013 11:29 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Quick Question Well, the value I am trying to pass is the contents of an INI file, so I doubt it's running out of m

Re: [WiX-users] Quick Question

2013-07-02 Thread Nick Miller
ndows Installer XML toolset. Subject: Re: [WiX-users] Quick Question It's limited by memory, but when I exceeded it, I always got a failure (usually when trying to retrieve the value in my deferred CA). > From: nmil...@livetechnology.com > To: wix-users@lists.sourceforge.net > Date:

Re: [WiX-users] Quick Question

2013-07-02 Thread Blair Murri
It's limited by memory, but when I exceeded it, I always got a failure (usually when trying to retrieve the value in my deferred CA). > From: nmil...@livetechnology.com > To: wix-users@lists.sourceforge.net > Date: Tue, 2 Jul 2013 13:43:48 + > Subject: [WiX-users] Quick Question > > Hi All,

Re: [WiX-users] Quick Question: common features in multiple installers

2010-05-28 Thread Blair
If you follow the component rules then yes: this should work. The contents of MAINFEATURE should be identical between INSTALLERA and INSTALLERB, including the directories used and the GUIDS of the included components, as well as the associated keypaths which must also be identical. -Original M

Re: [WiX-users] Quick question: How to determine if Windows is64-bit at install time?

2007-01-11 Thread Eric Fesh
:[EMAIL PROTECTED] >> Sent: Thursday, January 11, 2007 7:42 AM >> To: Levi Wilson >> Cc: wix-users@lists.sourceforge.net >> Subject: Re: [WiX-users] Quick question: How to determine if >> Windows is64-bit at install time? >> >> Levi: >> >> Thanks... Much app

Re: [WiX-users] Quick question: How to determine if Windows is64-bit at install time?

2007-01-11 Thread Harvey Werner
ginal Message- > From: Eric Fesh [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 11, 2007 7:42 AM > To: Levi Wilson > Cc: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Quick question: How to determine if > Windows is64-bit at install time? > > Levi: > > T

Re: [WiX-users] Quick question: How to determine if Windows is 64-bit at install time?

2007-01-11 Thread Eric Fesh
D'oh! No, you were right. Msix64 will only tell me that the hardware is 64-bit, not that the OS is 64-bit. Thanks once again... -- Eric Fesh Customer Support Engineer/Software Test Engineer Verari Systems Software, Inc. 110 12th Street North, Suite D103 Birmingham, AL 35203 Phone +1-205-397-3141

Re: [WiX-users] Quick question: How to determine if Windows is 64-bit at install time?

2007-01-11 Thread Eric Fesh
Levi: Thanks... Much appreciated. I also found the Msix64 property, which I think might be a cleaner solution for my purposes. *chuckle* For some reason, it seems that I find answers faster by myself only after I've sent an email asking for help... -- Eric Fesh Customer Support Engineer/Softw

Re: [WiX-users] Quick question: How to determine if Windows is 64-bit at install time?

2007-01-11 Thread Levi Wilson
Make a condition for it using the VersionNT64 property ( http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/system_folder_properties.asp ) On 1/11/07, Eric Fesh <[EMAIL PROTECTED]> wrote: Hello all: I've got a situation where I need to launch a custom action when an ap

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Jeff MacDuff
Ok thanks for all the info.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson Sent: Tuesday, September 26, 2006 10:56 AM To: Jeff MacDuff Cc: Wilson, Phil; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Quick question on upgrade checking

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Bob Arnson
Jeff MacDuff wrote: Is there a mechanism to prompt the user if they want to uninstall or not Yes. You'll need to create a dialog and schedule it early in the UI sequence, conditioned on the property you use in UpgradeVersion. It can be a simple dialog with Upgrade an

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Jeff MacDuff
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson Sent: Tuesday, September 26, 2006 10:22 AM To: Jeff MacDuff Cc: Wilson, Phil; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Quick question on upgrade checking   Jeff MacDuff wrote: So would the new syntax be this

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Bob Arnson
Jeff MacDuff wrote: So would the new syntax be this?         Assuming you have only one feature (DefaultFeature), you don't need to check i

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Jeff MacDuff
ourceforge.net Subject: Re: [WiX-users] Quick question on upgrade checking   Jeff MacDuff wrote: In my InstallExecuteSequence I have this reference:       <RemoveExistingProducts After="InstallFinalize">RemoveExistingProducts> As the Mythbusters say, "There's your prob

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Rob Hamflett
------------------- > > *From:* Bob Arnson [mailto:[EMAIL PROTECTED] > *Sent:* Monday, September 25, 2006 11:24 PM > *To:* Jeff MacDuff > *Cc:* Wilson, Phil; wix-users@lists.sourceforge.net > *Subject:* Re: [WiX-users] Quick question on upgrade checkin

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Bob Arnson
Jeff MacDuff wrote: In my InstallExecuteSequence I have this reference:       RemoveExistingProducts> As the Mythbusters say, "There's your problem right there." The property MyUpgrade is set to the product code of the old

Re: [WiX-users] Quick question on upgrade checking

2006-09-26 Thread Jeff MacDuff
<RemoveExistingProducts After="InstallFinalize">RemoveExistingProducts>     Please note that I inherited this J   Does this look right?   -Jeff   From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Monday, September 25, 2006 11:24 PM To: Jeff MacDuff Cc: W

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Jeff MacDuff
Is a previous version is detected, what’s the action the MSI takes?   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson Sent: Monday, September 25, 2006 9:28 PM To: Jeff MacDuff Cc: Wilson, Phil; wix-users@lists.sourceforge.net Subject: Re: [WiX-users

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Bob Arnson
Jeff MacDuff wrote: That’s the weird thing, I am not doing anything special for English.. there’s no English special syntax I don’t believe. Earlier you mentioned prompting for the upgrade; MSI doesn't do that so there's gotta be something extra. -- sig://boB http://bobs.

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Jeff MacDuff
Subject: Re: [WiX-users] Quick question on upgrade checking   Jeff MacDuff wrote: It did find the German V1 … however it didn’t stop the install of V2 / uninstall v1 How are you doing that for English? -- sig://boBhttp://bobs.org

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Bob Arnson
Jeff MacDuff wrote: It did find the German V1 … however it didn’t stop the install of V2 / uninstall v1 How are you doing that for English? -- sig://boB http://bobs.org - Take Surveys. Earn Cash. I

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Jeff MacDuff
: [WiX-users] Quick question on upgrade checking   Jeff MacDuff wrote: Ok so I have gone through the logs a few times…   In the FindRelatedProducts section of the MSI it does find 1 related product… however the GUID it lists is the “ProductCode” of the Old ( V1) MSI… not the UpgradeCode. It

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Bob Arnson
Jeff MacDuff wrote: Ok so I have gone through the logs a few times…   In the FindRelatedProducts section of the MSI it does find 1 related product… however the GUID it lists is the “ProductCode” of the Old ( V1) MSI… not the UpgradeCode. It finds it by the upgrade code b

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Jeff MacDuff
) should list the UpgradeCode and not the ProductCode ?   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson Sent: Monday, September 25, 2006 10:08 AM To: Jeff MacDuff Cc: Wilson, Phil; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Quick question on upgrade

Re: [WiX-users] Quick question on upgrade checking

2006-09-25 Thread Bob Arnson
Jeff MacDuff wrote: The overall goal is that anytime I install the new package, it should prompt to remove the old package regardless of language. So if I have a English OS , with a DEU old package installed.. and I run the new DEU package on this OS it should prompt me. That's the case I

Re: [WiX-users] Quick question on upgrade checking

2006-09-23 Thread Jeff MacDuff
never finds the old package. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil Sent: Friday, September 22, 2006 5:50 PM To: Jeff MacDuff; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Quick question on upgrade checking So we have an up

Re: [WiX-users] Quick question on upgrade checking

2006-09-22 Thread Wilson, Phil
[mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 3:16 PM To: Wilson, Phil; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade checking Yes, it's installed for all users. -Original Message- From: Wilson, Phil [mailto:[EMAIL PROTECTED] Sent:

Re: [WiX-users] Quick question on upgrade checking

2006-09-22 Thread Jeff MacDuff
Yes, it's installed for all users. -Original Message- From: Wilson, Phil [mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 2:23 PM To: Jeff MacDuff; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade checking Both old and new are installe

Re: [WiX-users] Quick question on upgrade checking

2006-09-22 Thread Wilson, Phil
ew MSI upgrade table {C9BD4428-98AC-4AD0-9646-4E212B1BB770} 1.0.0 2.0.0 260 All -Jeff -Original Message- From: Jeff MacDuff Sent: Friday, September 22, 2006 1:16 PM To: 'Wilson, Phil'; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade check

Re: [WiX-users] Quick question on upgrade checking

2006-09-22 Thread Jeff MacDuff
D0-9646-4E212B1BB770} 1.0.0 2.0.0 260 All -Jeff -Original Message- From: Jeff MacDuff Sent: Friday, September 22, 2006 1:16 PM To: 'Wilson, Phil'; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade checking Ok I just looked and both of the vers

Re: [WiX-users] Quick question on upgrade checking

2006-09-22 Thread Jeff MacDuff
@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade checking UpgradeVersion has Minimum and Maximum strings that specify the range of product versions that you want to look for and upgrade (IncludeMaximum and IncludeMinimum are involved too). If you don't specify these values I don't

Re: [WiX-users] Quick question on upgrade checking

2006-09-22 Thread Wilson, Phil
mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 11:15 AM To: Wilson, Phil; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade checking What version specs do you refer too? Here is the WXS: -Original Message- From: [EMAIL PROTECTED] [mailto:

Re: [WiX-users] Quick question on upgrade checking

2006-09-22 Thread Jeff MacDuff
What version specs do you refer too? Here is the WXS: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil Sent: Thursday, September 21, 2006 9:52 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Quick question on

Re: [WiX-users] Quick question on upgrade checking

2006-09-21 Thread Wilson, Phil
Behalf Of Jeff MacDuff Sent: Wednesday, September 20, 2006 5:17 PM To: Stefan Pavlik Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Quick question on upgrade checking It's still not working for me... here's what I did: I looked at the new msi ( the one we are building now

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Jeff MacDuff
- From: Stefan Pavlik [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 20, 2006 6:32 AM To: Jeff MacDuff Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Quick question on upgrade checking Hi, After reading the MSDN and Wix help (at the end of my email) I think that you can o

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Jeff MacDuff
Ok thanks for the tips.. I will review the codes again and take a look.   From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 20, 2006 7:03 AM To: Jeff MacDuff; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade checking

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Mike Dimmick
: Re: [WiX-users] Quick question on upgrade checking Any one see any issues with my syntax here?   I have the ID set to the upgrade ID of the previous MSI pack… again this is working in English but not in any other lang.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Stefan Pavlik
Hi, After reading the MSDN and Wix help (at the end of my email) I think that you can ommit the ExcludeLanguages attribute since you do not use the Language attribute. Anyway I think it should work as you want. Try to check the resulting MSI file with ORCA (or any other viewer) and look at the Upg

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Jeff MacDuff
Any one see any issues with my syntax here?   I have the ID set to the upgrade ID of the previous MSI pack… again this is working in English but not in any other lang.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff MacDuff Sent: Tuesday, September 19, 2006