Re: [WiX-users] R: Extend ProductSearch for working with Burn exe Package

2015-05-26 Thread Marco Tognacci
The component (child) package can't add referrence to its main package 
(parent).I have a component package that can be included in differents main 
packages and when I make this package I don't know the possible packages that 
could be include it.As this component package is released by a company and the 
main package is released by another later.So I can only add a reference in the 
main package to its component package.
I have tried to add a tag to the component package as I can get this BundleTag 
from the main package when it detect the related bundle added in the main 
package using the Upgrade code of the component package.In this case in the 
main package I have added the RelatedBundle element using the UpgradeCode of 
the component package.

I don't have understood if the RelatedBundle must be declared in the main 
package using the UpgradeCode of the component package and using the mode 
Detect or Addon?

Thanks.

> Date: Tue, 19 May 2015 13:44:57 -0700
> From: phogl...@rimage.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] R: Extend ProductSearch for working with Burn exe
> Package
> 
> I have done some experiments with 'bob' (bundle of bundles).  I may not have
> it all figured out yet, but what I have done is this:
> 
> 1) Add this to the parent bundle (I do this for every bundle, even when not
> planning to do 'bob', so that in the future I can decide to create a related
> Addon or Upgrade as needed.):
> 
> 
> 2) in the child bundle:
>  Id='RelatedBundle_GUID_For_This_Bundle-different than above' />
>  RelatedBundle_GUID' />
> 
> You may want to pick a different Action behavior from 'Addon'.
> 
> 3) In the parent bundle I add the child bundle using an ExePackage like
> this:
>   
> 
> 
>    Vital="yes" Protocol="burn"
>   Compressed="no"
>   DownloadUrl="!(wix.myReleaseUrl){2}"
>   Name="myChildBundle\myChildBundle.exe"
>   SourceFile="myChildBundle.exe"
>   InstallCondition="1=1"
>   DetectCondition="1=0"
> >
> 
>   
> 
>   
> 
> When I added all of the event handlers that are related to Related Bundles
> to my mba with logging messages (or debug) I found that the default
> behaviour of Burn made it unnecessary for me to try and 'detect' whether the
> child bundle is installed, as I indicated earlier.  In the situation where I
> do not use a RelatedBundle then I write a registry key to a known location
> using the child bundle and use that info in the non-bundle parent to detect
> the child bundle.  But when using Burn for both bundles, so far for me, it
> just works and I don't do anything to detect the child bundle.  Thanks wix
> devs!
> 
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/R-Extend-ProductSearch-for-working-with-Burn-exe-Package-tp7600279p7600372.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] R: Extend ProductSearch for working with Burn exe Package

2015-05-19 Thread Marco Tognacci
So how can I detect if a Burn Bundle Exe package is installed, from another 
bundle setup package?Can you provide some kind of example?I have seen the 
RelatedBundle, but how can I use it to set the Detect condition of an exe 
package?Thanks

> From: jacob.hoo...@greenheck.com
> To: wix-users@lists.sourceforge.net
> Date: Sun, 17 May 2015 22:24:41 +
> Subject: Re: [WiX-users] R: Extend ProductSearch for working with Burn exe 
> Package
> 
> I believe the confusion you are having stems from the usage of 
> util:ProductSearch inside your BA. That search would mirror the functionality 
> of the ProductSearch within a MSI, which only populates the Upgrade table in 
> the MSI with the Upgrade code of a MSI.  Windows Installer only knows or 
> cares about Windows Installer based installs, so it's going to use Msi* API's 
> to query based on the upgrade code.
> 
> In short, util:ProductSearch is working as intended, but it isn't intended to 
> work with a bundle upgrade code.
> 
> 
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Sunday, May 17, 2015 4:10 PM
> To: WiX - users
> Subject: Re: [WiX-users] R: Extend ProductSearch for working with Burn exe 
> Package
> 
> Is there any mistake in my code or is there a bug in the util:ProductSearch 
> extension?How can I make this code working?Thanks
> 
> > > From: mark...@live.it
> > > To: wix-users@lists.sourceforge.net
> > > Date: Wed, 13 May 2015 01:02:45 +0200
> > > Subject: Re: [WiX-users] R: Extend ProductSearch for working with 
> > > Burn exe Package
> > > 
> > > I have used util:ProductSearch to detect condition for my BurnPackage, 
> > > but it doesn't work, I use the last official release 3.9R2, the variable 
> > > assigned is equal to 2 (absent) even if the package is installed (I can 
> > > check manually the registry and I can find the UpgradeCode of the package 
> > > in a variable BundleUpgradeCode inside the installed product sections)
> > > http://schemas.microsoft.com/wix/2006/wi"; 
> > > xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
> > >  > > UpgradeCode="{----}" 
> > > Variable="MyBurnPackage_Installed" Result="state" /> 
> > >> > Id="MyBurnPackage" Cache="no" Compressed="no" Permanent="yes" Vital="yes" 
> > >SourceFile="..\Externals\MyBurnPackage.exe" 
> > > Name="MyBurnPackage.exe"
> > > DetectCondition="MyBurnPackage_Installed > 2"/>  
> > >   
> > > Is there any mistake in my code or is there a bug in the 
> > > util:ProductSearch extension?How can I make this code working?Thanks
> > > 
> > > > From: jocoo...@jackhenry.com
> > > > To: wix-users@lists.sourceforge.net
> > > > Date: Mon, 11 May 2015 12:52:57 +
> > > > Subject: Re: [WiX-users] R: Extend ProductSearch for working with   
> > > > Burnexe Package
> > > > 
> > > > I think there is some confusion.  1) util:ProductSearch works with 
> > > > Burn/Bundle.  Whether it will do exactly what you want (as pointed out 
> > > > by Phil) is another matter, but it does work.  2) the standard 
> > > > ProductSearch is desiged to work in the WiX schema and is not suitable 
> > > > for Burn/Bundle.  3) As is pointed out, there are very few limitations 
> > > > if you write a custom BA.  That would be my recommendation too.
> > > > 
> > > > --
> > > > John Merryweather Cooper
> > > > Senior Software Engineer | Integration Development Group | 
> > > > Enterprise Notification Service Jack Henry & Associates, Inc.® | 
> > > > Lenexa, KS  66214 | Ext:  431050 |jocoo...@jackhenry.com
> > > > 
> > > > 
> > > > 
> > > > -Original Message-
> > > > From: Marco Tognacci [mailto:mark...@live.it]
> > > > Sent: Monday, May 11, 2015 2:06 AM
> > > > To: General discussion about the WiX toolset.
> > > > Subject: [WiX-users] R: Extend ProductSearch for working with Burn 
> > > > exe Package
> > > > 
> > > > I have user the Extension ProductSearch from UtilExtension, and this 
> > > > only works for msi packages, any other suggestion?
> > > > 
> > > > Inviata dal mio Windows Phone
> > > > _

Re: [WiX-users] R: Extend ProductSearch for working with Burn exe Package

2015-05-17 Thread Marco Tognacci
Is there any mistake in my code or is there a bug in the util:ProductSearch 
extension?How can I make this code working?Thanks

> > From: mark...@live.it
> > To: wix-users@lists.sourceforge.net
> > Date: Wed, 13 May 2015 01:02:45 +0200
> > Subject: Re: [WiX-users] R: Extend ProductSearch for working with Burn exe 
> > Package
> > 
> > I have used util:ProductSearch to detect condition for my BurnPackage, but 
> > it doesn't work, I use the last official release 3.9R2, the variable 
> > assigned is equal to 2 (absent) even if the package is installed (I can 
> > check manually the registry and I can find the UpgradeCode of the package 
> > in a variable BundleUpgradeCode inside the installed product sections)
> > http://schemas.microsoft.com/wix/2006/wi"; 
> > xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>  
> >> Variable="MyBurnPackage_Installed" Result="state" />  > Id="MyBurnPackageGroup">   > Compressed="no" Permanent="yes" Vital="yes"
> > SourceFile="..\Externals\MyBurnPackage.exe" Name="MyBurnPackage.exe"
> > DetectCondition="MyBurnPackage_Installed > 2"/>  
> >   
> > Is there any mistake in my code or is there a bug in the util:ProductSearch 
> > extension?How can I make this code working?Thanks
> > 
> > > From: jocoo...@jackhenry.com
> > > To: wix-users@lists.sourceforge.net
> > > Date: Mon, 11 May 2015 12:52:57 +
> > > Subject: Re: [WiX-users] R: Extend ProductSearch for working with Burn
> > > exe Package
> > > 
> > > I think there is some confusion.  1) util:ProductSearch works with 
> > > Burn/Bundle.  Whether it will do exactly what you want (as pointed out by 
> > > Phil) is another matter, but it does work.  2) the standard ProductSearch 
> > > is desiged to work in the WiX schema and is not suitable for Burn/Bundle. 
> > >  3) As is pointed out, there are very few limitations if you write a 
> > > custom BA.  That would be my recommendation too.
> > > 
> > > --
> > > John Merryweather Cooper
> > > Senior Software Engineer | Integration Development Group | Enterprise 
> > > Notification Service
> > > Jack Henry & Associates, Inc.® | Lenexa, KS  66214 | Ext:  431050 
> > > |jocoo...@jackhenry.com
> > > 
> > > 
> > > 
> > > -Original Message-
> > > From: Marco Tognacci [mailto:mark...@live.it] 
> > > Sent: Monday, May 11, 2015 2:06 AM
> > > To: General discussion about the WiX toolset.
> > > Subject: [WiX-users] R: Extend ProductSearch for working with Burn exe 
> > > Package
> > > 
> > > I have user the Extension ProductSearch from UtilExtension, and this only 
> > > works for msi packages, any other suggestion?
> > > 
> > > Inviata dal mio Windows Phone
> > > 
> > > Da: Phill Hogland<mailto:phogl...@rimage.com>
> > > Inviato: ‎09/‎05/‎2015 16:56
> > > A: wix-users@lists.sourceforge.net<mailto:wix-users@lists.sourceforge.net>
> > > Oggetto: Re: [WiX-users] Extend ProductSearch for working with Burn exe 
> > > Package
> > > 
> > > "ProductSearch element works only with msi package," is true of the 
> > > wix:ProductSearch (which can only be used in a msi context).  However in 
> > > another thread to answer your question John suggested that you look at 
> > > util:ProductSearch (which is a Bundle related WixExtension).
> > > 
> > > I have not needed any of this when including a Burn bundle in a Burn 
> > > bundle.
> > > As others have responded, look at the RelatedBundle support already in 
> > > Burn.
> > > 
> > > With regard to finding a Bundle from a non-wix application I have 
> > > previously detailed for you the approach that my legacy setup uses to to 
> > > find a child bundle (which relies on defining Bundle/@dep: ProviderKey, 
> > > getting the BundleId in the mba, and passing it to a chained MSI for 
> > > storage in a known location in the registry).  Also in other threads on 
> > > this issue Jacob has provided another approach related to using dutil 
> > > functions.
> > > 
> > > I don't think that your current line of thinking, trying to"extend" a MSI 
> > > ProductSearch CA to work in Burn, is even possible.
> > > 
> > > 

Re: [WiX-users] R: Extend ProductSearch for working with Burn exe Package

2015-05-14 Thread Marco Tognacci
 Is there any mistake in my code or is there a bug in the util:ProductSearch 
extension?How can I make this code working?Thanks

> From: mark...@live.it
> To: wix-users@lists.sourceforge.net
> Date: Wed, 13 May 2015 01:02:45 +0200
> Subject: Re: [WiX-users] R: Extend ProductSearch for working with Burn exe 
> Package
> 
> I have used util:ProductSearch to detect condition for my BurnPackage, but it 
> doesn't work, I use the last official release 3.9R2, the variable assigned is 
> equal to 2 (absent) even if the package is installed (I can check manually 
> the registry and I can find the UpgradeCode of the package in a variable 
> BundleUpgradeCode inside the installed product sections)
> http://schemas.microsoft.com/wix/2006/wi"; 
> xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
>  Variable="MyBurnPackage_Installed" Result="state" />  Id="MyBurnPackageGroup">   Compressed="no" Permanent="yes" Vital="yes"
> SourceFile="..\Externals\MyBurnPackage.exe" Name="MyBurnPackage.exe"  
>   DetectCondition="MyBurnPackage_Installed > 2"/>  
>   
> Is there any mistake in my code or is there a bug in the util:ProductSearch 
> extension?How can I make this code working?Thanks
> 
> > From: jocoo...@jackhenry.com
> > To: wix-users@lists.sourceforge.net
> > Date: Mon, 11 May 2015 12:52:57 +
> > Subject: Re: [WiX-users] R: Extend ProductSearch for working with   Burn
> > exe Package
> > 
> > I think there is some confusion.  1) util:ProductSearch works with 
> > Burn/Bundle.  Whether it will do exactly what you want (as pointed out by 
> > Phil) is another matter, but it does work.  2) the standard ProductSearch 
> > is desiged to work in the WiX schema and is not suitable for Burn/Bundle.  
> > 3) As is pointed out, there are very few limitations if you write a custom 
> > BA.  That would be my recommendation too.
> > 
> > --
> > John Merryweather Cooper
> > Senior Software Engineer | Integration Development Group | Enterprise 
> > Notification Service
> > Jack Henry & Associates, Inc.® | Lenexa, KS  66214 | Ext:  431050 
> > |jocoo...@jackhenry.com
> > 
> > 
> > 
> > -Original Message-
> > From: Marco Tognacci [mailto:mark...@live.it] 
> > Sent: Monday, May 11, 2015 2:06 AM
> > To: General discussion about the WiX toolset.
> > Subject: [WiX-users] R: Extend ProductSearch for working with Burn exe 
> > Package
> > 
> > I have user the Extension ProductSearch from UtilExtension, and this only 
> > works for msi packages, any other suggestion?
> > 
> > Inviata dal mio Windows Phone
> > 
> > Da: Phill Hogland<mailto:phogl...@rimage.com>
> > Inviato: ‎09/‎05/‎2015 16:56
> > A: wix-users@lists.sourceforge.net<mailto:wix-users@lists.sourceforge.net>
> > Oggetto: Re: [WiX-users] Extend ProductSearch for working with Burn exe 
> > Package
> > 
> > "ProductSearch element works only with msi package," is true of the 
> > wix:ProductSearch (which can only be used in a msi context).  However in 
> > another thread to answer your question John suggested that you look at 
> > util:ProductSearch (which is a Bundle related WixExtension).
> > 
> > I have not needed any of this when including a Burn bundle in a Burn bundle.
> > As others have responded, look at the RelatedBundle support already in Burn.
> > 
> > With regard to finding a Bundle from a non-wix application I have 
> > previously detailed for you the approach that my legacy setup uses to to 
> > find a child bundle (which relies on defining Bundle/@dep: ProviderKey, 
> > getting the BundleId in the mba, and passing it to a chained MSI for 
> > storage in a known location in the registry).  Also in other threads on 
> > this issue Jacob has provided another approach related to using dutil 
> > functions.
> > 
> > I don't think that your current line of thinking, trying to"extend" a MSI 
> > ProductSearch CA to work in Burn, is even possible.
> > 
> > 
> > 
> > --
> > View this message in context: 
> > http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Extend-ProductSearch-for-working-with-Burn-exe-Package-tp7600271p7600272.html
> > Sent from the wix-users mailing list archive at Nabble.com.
> > 
> > --
> > One dashboard for servers and applications acros

Re: [WiX-users] R: Extend ProductSearch for working with Burn exe Package

2015-05-12 Thread Marco Tognacci
I have used util:ProductSearch to detect condition for my BurnPackage, but it 
doesn't work, I use the last official release 3.9R2, the variable assigned is 
equal to 2 (absent) even if the package is installed (I can check manually the 
registry and I can find the UpgradeCode of the package in a variable 
BundleUpgradeCode inside the installed product sections)
http://schemas.microsoft.com/wix/2006/wi"; 
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
  
 
Is there any mistake in my code or is there a bug in the util:ProductSearch 
extension?How can I make this code working?Thanks

> From: jocoo...@jackhenry.com
> To: wix-users@lists.sourceforge.net
> Date: Mon, 11 May 2015 12:52:57 +
> Subject: Re: [WiX-users] R: Extend ProductSearch for working with Burn
> exe Package
> 
> I think there is some confusion.  1) util:ProductSearch works with 
> Burn/Bundle.  Whether it will do exactly what you want (as pointed out by 
> Phil) is another matter, but it does work.  2) the standard ProductSearch is 
> desiged to work in the WiX schema and is not suitable for Burn/Bundle.  3) As 
> is pointed out, there are very few limitations if you write a custom BA.  
> That would be my recommendation too.
> 
> --
> John Merryweather Cooper
> Senior Software Engineer | Integration Development Group | Enterprise 
> Notification Service
> Jack Henry & Associates, Inc.® | Lenexa, KS  66214 | Ext:  431050 
> |jocoo...@jackhenry.com
> 
> 
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Monday, May 11, 2015 2:06 AM
> To: General discussion about the WiX toolset.
> Subject: [WiX-users] R: Extend ProductSearch for working with Burn exe Package
> 
> I have user the Extension ProductSearch from UtilExtension, and this only 
> works for msi packages, any other suggestion?
> 
> Inviata dal mio Windows Phone
> 
> Da: Phill Hogland<mailto:phogl...@rimage.com>
> Inviato: ‎09/‎05/‎2015 16:56
> A: wix-users@lists.sourceforge.net<mailto:wix-users@lists.sourceforge.net>
> Oggetto: Re: [WiX-users] Extend ProductSearch for working with Burn exe 
> Package
> 
> "ProductSearch element works only with msi package," is true of the 
> wix:ProductSearch (which can only be used in a msi context).  However in 
> another thread to answer your question John suggested that you look at 
> util:ProductSearch (which is a Bundle related WixExtension).
> 
> I have not needed any of this when including a Burn bundle in a Burn bundle.
> As others have responded, look at the RelatedBundle support already in Burn.
> 
> With regard to finding a Bundle from a non-wix application I have previously 
> detailed for you the approach that my legacy setup uses to to find a child 
> bundle (which relies on defining Bundle/@dep: ProviderKey, getting the 
> BundleId in the mba, and passing it to a chained MSI for storage in a known 
> location in the registry).  Also in other threads on this issue Jacob has 
> provided another approach related to using dutil functions.
> 
> I don't think that your current line of thinking, trying to"extend" a MSI 
> ProductSearch CA to work in Burn, is even possible.
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Extend-ProductSearch-for-working-with-Burn-exe-Package-tp7600271p7600272.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications Performance 
> metrics, stats and reports that give you Actionable Insights Deep dive 
> visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications Performance 
> metrics, stats and reports that give you Actionable Insights Deep dive 
> visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> NOTICE: This elec

[WiX-users] R: Extend ProductSearch for working with Burn exe Package

2015-05-11 Thread Marco Tognacci
I have user the Extension ProductSearch from UtilExtension, and this only works 
for msi packages, any other suggestion?

Inviata dal mio Windows Phone

Da: Phill Hogland
Inviato: ‎09/‎05/‎2015 16:56
A: wix-users@lists.sourceforge.net
Oggetto: Re: [WiX-users] Extend ProductSearch for working with Burn exe Package

"ProductSearch element works only with msi package," is true of the
wix:ProductSearch (which can only be used in a msi context).  However in
another thread to answer your question John suggested that you look at
util:ProductSearch (which is a Bundle related WixExtension).

I have not needed any of this when including a Burn bundle in a Burn bundle.
As others have responded, look at the RelatedBundle support already in Burn.

With regard to finding a Bundle from a non-wix application I have previously
detailed for you the approach that my legacy setup uses to to find a child
bundle (which relies on defining Bundle/@dep: ProviderKey, getting the
BundleId in the mba, and passing it to a chained MSI for storage in a known
location in the registry).  Also in other threads on this issue Jacob has
provided another approach related to using dutil functions.

I don't think that your current line of thinking, trying to"extend" a MSI
ProductSearch CA to work in Burn, is even possible.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Extend-ProductSearch-for-working-with-Burn-exe-Package-tp7600271p7600272.html
Sent from the wix-users mailing list archive at Nabble.com.

--
One dashboard for servers and applications across Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Extend ProductSearch for working with Burn exe Package

2015-05-08 Thread Marco Tognacci
I have seen that the ProductSearch element works only with msi package, I need 
to check the same condition for a Burn exe package, is there any way for 
extending it?I have seen the ProductSearch source code but I wasn't able to 
compile with Visual Studio 2013, is there anyone that can tell me what I need 
to do to add new extension to make a new element BurnProductSearch to works 
with the Burn exe package?
Thanks
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to use RegistrySearch using a searching condition?

2015-05-07 Thread Marco Tognacci
I have a Main Burn exe Bundle that need to install a secondary exe Bundle 
package,I have added the secondary exe package as ExePackage in the Main Bundle 
and add it in che Main Bundle Chain, and I need to add the right Detect 
condition for this package.How can I use the related Bundle?
Thanks




> From: jacob.hoo...@greenheck.com
> To: wix-users@lists.sourceforge.net
> Date: Thu, 7 May 2015 19:34:35 +
> Subject: Re: [WiX-users] How to use RegistrySearch using a searching 
> condition?
> 
> Custom Action or within your custom BA?
> 
> For the former I'd start with the functions from butil.cpp, though there 
> still are future concerns about the potential for maintaining backwards and 
> forwards compatibility.  
> 
> If you're doing this in a custom BA, have a look at the RelatedBundle element.
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Thursday, May 07, 2015 2:21 PM
> To: WiX - users
> Subject: Re: [WiX-users] How to use RegistrySearch using a searching 
> condition?
> 
> ProductSearch works only with msi packages, I need to have the same feature 
> but with a Bundle Burn exe package,at this momento there is no extension for 
> doing this so I 'm tring to search manually in the registry.
> 
> 
> > From: jocoo...@jackhenry.com
> > To: wix-users@lists.sourceforge.net
> > Date: Thu, 7 May 2015 19:14:23 +
> > Subject: Re: [WiX-users] How to use RegistrySearch using a searching 
> > condition?
> > 
> > See util:ProductSearch.
> > 
> > --
> > John Merryweather Cooper
> > Senior Software Engineer | Integration Development Group | Enterprise 
> > Notification Service Jack Henry & Associates, Inc.(r) | Lenexa, KS  
> > 66214 | Ext:  431050 |jocoo...@jackhenry.com
> > 
> > 
> > 
> > -Original Message-
> > From: Marco Tognacci [mailto:mark...@live.it]
> > Sent: Thursday, May 7, 2015 2:04 PM
> > To: WiX - users
> > Subject: [WiX-users] How to use RegistrySearch using a searching condition?
> > 
> > I need to search a registry key of this kind, where is present a GUID 
> > with the ProductCode of an installed package that I don't know 
> > HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
> > \{----}\
> > I need to find the registry key based on the string defined inside it 
> > with Name=BundleUpgradeCodeValue={MyUpgradeCode}
> > where MyUpgradeCode is a fixed code that I Know.
> > 
> > Is there any way for serarching all the registry key to search the one that 
> > have inside a string BundleUpgradeCode={MyUpgradeCode} ???Is there any way 
> > for serarch the registry key using a predicate or matching condition?
> > Thanks.   
> > --
> >  One dashboard for servers and applications across 
> > Physical-Virtual-Cloud Widest out-of-the-box monitoring support with 50+ 
> > applications Performance metrics, stats and reports that give you 
> > Actionable Insights Deep dive visibility with transaction tracing using APM 
> > Insight.
> > http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> > NOTICE: This electronic mail message and any files transmitted with it 
> > are intended exclusively for the individual or entity to which it is 
> > addressed. The message, together with any attachment, may contain 
> > confidential and/or privileged information.
> > Any unauthorized review, use, printing, saving, copying, disclosure or 
> > distribution is strictly prohibited. If you have received this message 
> > in error, please immediately advise the sender by reply email and delete 
> > all copies.
> > 
> > 
> > --
> >  One dashboard for servers and applications across 
> > Physical-Virtual-Cloud Widest out-of-the-box monitoring support with 
> > 50+ applications Performance metrics, stats and reports that give you 
> > Actionable Insights Deep dive visibility with transaction tracing 
> > using APM Insight.
> > http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
>

Re: [WiX-users] How to use RegistrySearch using a searching condition?

2015-05-07 Thread Marco Tognacci
ProductSearch works only with msi packages, I need to have the same feature but 
with a Bundle Burn exe package,at this momento there is no extension for doing 
this so I 'm tring to search manually in the registry.


> From: jocoo...@jackhenry.com
> To: wix-users@lists.sourceforge.net
> Date: Thu, 7 May 2015 19:14:23 +
> Subject: Re: [WiX-users] How to use RegistrySearch using a searching 
> condition?
> 
> See util:ProductSearch.
> 
> --
> John Merryweather Cooper
> Senior Software Engineer | Integration Development Group | Enterprise 
> Notification Service
> Jack Henry & Associates, Inc.® | Lenexa, KS  66214 | Ext:  431050 
> |jocoo...@jackhenry.com
> 
> 
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Thursday, May 7, 2015 2:04 PM
> To: WiX - users
> Subject: [WiX-users] How to use RegistrySearch using a searching condition?
> 
> I need to search a registry key of this kind, where is present a GUID with 
> the ProductCode of an installed package that I don't know 
> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{----}\
> I need to find the registry key based on the string defined inside it with 
> Name=BundleUpgradeCodeValue={MyUpgradeCode}
> where MyUpgradeCode is a fixed code that I Know.
> 
> Is there any way for serarching all the registry key to search the one that 
> have inside a string BundleUpgradeCode={MyUpgradeCode} ???Is there any way 
> for serarch the registry key using a predicate or matching condition?
> Thanks. 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications Performance 
> metrics, stats and reports that give you Actionable Insights Deep dive 
> visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> NOTICE: This electronic mail message and any files transmitted with it are 
> intended
> exclusively for the individual or entity to which it is addressed. The 
> message, 
> together with any attachment, may contain confidential and/or privileged 
> information.
> Any unauthorized review, use, printing, saving, copying, disclosure or 
> distribution 
> is strictly prohibited. If you have received this message in error, please 
> immediately advise the sender by reply email and delete all copies.
> 
> 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to use RegistrySearch using a searching condition?

2015-05-07 Thread Marco Tognacci
I need to search a registry key of this kind, where is present a GUID with the 
ProductCode of an installed package that I don't know
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{----}\
I need to find the registry key based on the string defined inside it with
Name=BundleUpgradeCodeValue={MyUpgradeCode}
where MyUpgradeCode is a fixed code that I Know.

Is there any way for serarching all the registry key to search the one that 
have inside a string BundleUpgradeCode={MyUpgradeCode} ???Is there any way for 
serarch the registry key using a predicate or matching condition?
Thanks.   
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Detect condition for a Burn Package ?

2015-04-28 Thread Marco Tognacci
So at this moment, there isn't a way for doing this?


> From: r...@firegiant.com
> To: wix-users@lists.sourceforge.net
> Date: Tue, 28 Apr 2015 21:18:56 +
> Subject: Re: [WiX-users] Detect condition for a Burn Package ?
> 
> IIRC, there is a feature request open for that.
> 
> _
>  Short replies here. Complete answers over there: http://www.firegiant.com/
> 
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Tuesday, April 28, 2015 1:55 PM
> To: WiX - users
> Subject: [WiX-users] Detect condition for a Burn Package ?
> 
> I have a Burn package (setup1.exe) that have an UpgradeCode={GUID}I have used 
> this exe package inside another Burn setup (setup2.exe), in this package I 
> need to  get the DetectCondition for the firt package (setup1.exe) is there 
> any way to get this condition?
>  Variable="Setup1_Installed" Result="state"/> I have tried this but it report 
> Setup1_Installed = 2 as not installed even if it is really installed,I have 
> read that this ProductSearch is only for the msi package, is right? 
> I have search on the registry the UpgradeCode and it appear in the Uninstall 
> section in a variable BundleUpgradeCode, But I don't know how to check it as 
> it is under a GUID code that is auto genrated during setup of the setup1.exe 
> Any way for doing this?Thanks
> 
> 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Detect condition for a Burn Package ?

2015-04-28 Thread Marco Tognacci
I have a Burn package (setup1.exe) that have an UpgradeCode={GUID}I have used 
this exe package inside another Burn setup (setup2.exe), in this package I need 
to  get the DetectCondition for the firt package (setup1.exe) is there any way 
to get this condition?

I have tried this but it report Setup1_Installed = 2 as not installed even if 
it is really installed,I have read that this ProductSearch is only for the msi 
package, is right? 
I have search on the registry the UpgradeCode and it appear in the Uninstall 
section in a variable BundleUpgradeCode, But I don't know how to check it as it 
is under a GUID code that is auto genrated during setup of the setup1.exe
Any way for doing this?Thanks
  
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Disable ARP entry for ExePackage

2015-04-26 Thread Marco Tognacci
I have 2 different cases:
1) I need to make a Burn exe package (BurnSetup.exe) that call an exe package 
(ComponentSetup.exe) made by another company, and I want to hide the ARP entry 
for this ComponentSetup.exe, and I need to see only the ARP entry for the 
BurnSetup.exe that I have made.
2) The Burn exe package (BurnSetup.exe) that I have made, can be used to 
install as a stand alone package, or can be included as a component in another 
Burn setup package (CompleteBurnSetup.exe) in this last case I need to see only 
the ARP entry for the CompleteBurnSetup.exe and hide the ARP entry for the 
BurnSetup.exeIn this case I need to Hide the ARP if the BurnSetup.exe is called 
inside the CompleteBurnSetup.exe while must be appeared on the ARP if it is 
called as a stand alone package.
I can set the properties inside the Burn element Date: Sun, 26 Apr 2015 13:34:35 -0700
> From: nir@panel-sw.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Disable ARP entry for ExePackage
> 
> I don't understand... do you have 2 bundles or 1?
> Anyway you can set a registry value to hide it from ARP:
> 
> Key:
> HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\
> Name: SystemComponent
> Type: DWORD
> Data: 1
> 
> 
> 
> 
> -
> Nir Bar 
> Freelance Developer 
> Mail: nir@panel-sw.com 
> Web: www.panel-sw.com 
>- C++ On Windows, Linux and Embedded Platforms 
>- WiX & InstallShield 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Disable-ARP-entry-for-ExePackage-tp7600099p7600102.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Disable ARP entry for ExePackage

2015-04-26 Thread Marco Tognacci
I have an exe package that install a third party compoment, I have added this 
component to my Burn exe package, but in this way I have the ARP entry for the 
single package plus the Burn package ARP entry.
Is there any way to remove the entry ARP for the ExePackage added to the Burn 
package?

In a Burn package I can remove the ARP entry setting the properties of burn 
elementhttp://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] R: R: WiX Burn use UILevel from simple UI

2015-04-22 Thread Marco Tognacci
Sorry For my English.. The question is:
Is there any Plan to design and the implement this feature in a future release 
of WiX?
As the expected answer is not, is there any hope to see this feature 
implemented in a future release of WiX?

Inviata dal mio Windows Phone

Da: Rob Mensching<mailto:r...@firegiant.com>
Inviato: ‎22/‎04/‎2015 09:13
A: General discussion about the WiX 
toolset.<mailto:wix-users@lists.sourceforge.net>
Oggetto: Re: [WiX-users] R:  WiX Burn use UILevel from simple UI

Integrate what? It's an unimplemented feature request. There is nothing to 
integrate until someone designs then implements the feature.

_
 Short replies here. Complete answers over there: http://www.firegiant.com/

-Original Message-
From: Marco Tognacci [mailto:mark...@live.it]
Sent: Tuesday, April 21, 2015 11:26 PM
To: General discussion about the WiX toolset.
Subject: [WiX-users] R: WiX Burn use UILevel from simple UI

Yes this is the same issue that I found, is there any plan for integrating it???

Inviata dal mio Windows Phone
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] R: WiX Burn use UILevel from simple UI

2015-04-21 Thread Marco Tognacci
Yes this is the same issue that I found, is there any plan for integrating it???

Inviata dal mio Windows Phone

Da: Sean Hall<mailto:r.sean.h...@gmail.com>
Inviato: ‎22/‎04/‎2015 01:41
A: General discussion about the WiX 
toolset.<mailto:wix-users@lists.sourceforge.net>
Oggetto: Re: [WiX-users] WiX Burn use UILevel from simple UI

Is this what you're asking for? http://wixtoolset.org/issues/3789/

On Tue, Apr 21, 2015 at 2:59 PM, Marco Tognacci  wrote:

> I need to make a Burn Bootstrapper setup using base wix interface, I have
> to customize some conditions using the UILevel.Is there any way to read a
> property like UILevel in msi projects?
> I can read the level of the UI (Full, None...) using a custom WPF
> interface and Burn Engine in c# code, but I'd like to use a simpler
> interface that one shipped with base WiX Burn project, but in this way I
> can't make a condition based on the UILevel of the Burn exe package, is
> there any way for doing this?
> Is this a bug or future development?
> Thanks.
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn use UILevel from simple UI

2015-04-21 Thread Marco Tognacci
I need to make a Burn Bootstrapper setup using base wix interface, I have to 
customize some conditions using the UILevel.Is there any way to read a property 
like UILevel in msi projects?
I can read the level of the UI (Full, None...) using a custom WPF interface and 
Burn Engine in c# code, but I'd like to use a simpler interface that one 
shipped with base WiX Burn project, but in this way I can't make a condition 
based on the UILevel of the Burn exe package, is there any way for doing this?
Is this a bug or future development?
Thanks.   
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn how to suspend and restart setup

2015-03-30 Thread Marco Tognacci
I have a Burn setup with custom WPF UI deployed using 2 DVD.I need to 
implemente search location for a component or payload, I have made the code 
inside the event ResolveSource, setting the new LocalSource and setting the 
result in the EventArgs to Retry,but in this way I only can do all the work 
using a modal dialog as I need to set the Result=Retry after selecion of the 
new path of the component.I'd like to suspend the setup inside the callback 
attached to the event ResolveSource then using the normal WPF interface of my 
setup, not a modal dialog, I want to report notification to the user and let 
the user change the path for locate the component, and then continue with the 
setup.
Is there a way for doing this? I have tried to set the Result=Suspend inside 
the ResolveSource event but the setup report and error and stop.
Thanks.   
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn ResolveSource event and SetLocalPath(newPath) not working

2015-03-27 Thread Marco Tognacci
I have a WiX Burn Mamaged Bootstrapper with WPF UI.I need to locate the msi 
package included in the exe in another location, (I need to deploy my setup on 
2 dvd).I have attached to the ResolveSource event (or overriding the method 
OnResolveSource) that report in the LocalPath the path of the package that it 
can't be located (because is on the second dvd) and inside it I have called the 
SetLocalPath() to the new path on the second DVD and set the EventArgs.Result = 
OK or Continue but it report the failure of the setup, then I can call 
RetryCommand so the setup work and use the new LocalPath but it rollback the 
setup and restart all.As I have more that one package to relocate is there a 
way to make the setup continue after the ResolveSource - SetLocalPath() 
?Perhaps I need to set another option as Result for the ResolveSource  event?Or 
What I have to do for make it working?Thanks.   

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] SwapRunFromCD And SwapRunFromNet - What is it and How to Use ?

2015-03-20 Thread Marco Tognacci
Thanks for your support,the Media element I think is only to create an msi 
package.I want not to separate the single msi but to have the Burn bundle that 
can load msi packages from 2 different disks.
Yes, I have seen the OnResolveSource (or ther ResolveSource event) called on 
the application engine, that is called when the engine doesn't locate a package 
or payload.But then what I need to do? change the LocalPath that is passed as 
EventArgs? Or I need to call some function on the Engine?For example the 
SetDownloadSource?
Thank you very much for your time and suggestions.


> Date: Fri, 20 Mar 2015 15:04:42 -0700
> From: phogl...@rimage.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] SwapRunFromCD And SwapRunFromNet - What is it and
> How to Use ?
> 
> I think you are looking for  this
>   
> feature.  I experimented with it some time ago, I but don't recall too much. 
> We decided to host the packages on a web site which makes my bundle
> distributable very small.  As Sean indicated in OnResolveSource the engine
> calls back to the mba when it cannot find a package, allowing you to do what
> you need to do to get the correct path and hand it back to the engine,
> prompt the user, or whatever.  The WixBA setup in InstallationViewModel has
> an implementation of ResolveSource.  In my case I set a new download URL in
> certain situations by calling  Engine.SetDownloadSource and returning
> Result.Download.  I am not sure of the specifics for multiple discs but that
> is the function in your mba to debug into when the engine is trying to find
> the package in another cabinet file (defined in the Media Element, I think).
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/SwapRunFromCD-And-SwapRunFromNet-How-to-Use-tp7599634p7599656.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> Dive into the World of Parallel Programming The Go Parallel Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for all
> things parallel software development, from weekly thought leadership blogs to
> news, videos, case studies, tutorials and more. Take a look and join the 
> conversation now. http://goparallel.sourceforge.net/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] SwapRunFromCD And SwapRunFromNet - What is it and How to Use ?

2015-03-20 Thread Marco Tognacci
AHahah, very very Funny...
I'm struggling to make a fully working setup using WiX, searching steadily all 
around the web, looking for a solution to the lack of documentation around WiX 
(apart of basic setup examples).
I'm sorry if my questions sometimes seem so silly, but in this case I don't 
really know which way to follow to solve this kind of problems.
if this is the only answer to my problems I wonder if this is the right 
tool.Maybe I have only lost my time trying to make this working well.
Thanks anyway,


> Date: Fri, 20 Mar 2015 15:26:29 -0500
> From: jeremi...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] SwapRunFromCD And SwapRunFromNet - What is it and 
> How to Use ?
> 
> LOL!!!
> 
> On Fri, Mar 20, 2015 at 3:21 PM, Rob Mensching  wrote:
> 
> > http://tinyurl.com/mfkhwxc
> >
> >
> > (Sorry, couldn't resist)
> > _
> >  Short replies here. Complete answers over there:
> > http://www.firegiant.com/
> >
> >
> > -Original Message-
> > From: Marco Tognacci [mailto:mark...@live.it]
> > Sent: Friday, March 20, 2015 12:12 PM
> > To: WiX - users
> > Subject: [WiX-users] SwapRunFromCD And SwapRunFromNet - What is it and How
> > to Use ?
> >
> > I'd like to have some more information about these optionsSwapRunFromCD
> > And SwapRunFromNetHow they are used? what they are used for?Can you provide
> > some reference and help about what are used for and how to use them?Thanks.
> >
> >
> >
> > --
> > Dive into the World of Parallel Programming The Go Parallel Website,
> > sponsored
> > by Intel and developed in partnership with Slashdot Media, is your hub for
> > all
> > things parallel software development, from weekly thought leadership blogs
> > to
> > news, videos, case studies, tutorials and more. Take a look and join the
> > conversation now. http://goparallel.sourceforge.net/
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> --
> Dive into the World of Parallel Programming The Go Parallel Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for all
> things parallel software development, from weekly thought leadership blogs to
> news, videos, case studies, tutorials and more. Take a look and join the 
> conversation now. http://goparallel.sourceforge.net/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] SwapRunFromCD And SwapRunFromNet - What is it and How to Use ?

2015-03-20 Thread Marco Tognacci
I'd like to have some more information about these optionsSwapRunFromCD And 
SwapRunFromNetHow they are used? what they are used for?Can you provide some 
reference and help about what are used for and how to use them?Thanks.
  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] SwapRunFromCD And SwapRunFromNet - How to Use

2015-03-19 Thread Marco Tognacci
I'd like to have some more information about these options
SwapRunFromCD And SwapRunFromNet
How they are used? what they are used for?Can you provide some reference and 
help about what are used for and how to use them?
Thanks. 




  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: Wix Burn with Managed WPF UI - How to deploy on multiple disks

2015-03-18 Thread Marco Tognacci
Any suggestions?

I have a Burn Managed Bootstrapper with WPF UI.I need to publish my setup using 
a DVD disk.I have many msi packages in the Burn chain, so I want to divide my 
setup application on 2 or more DVD disks.I have seen the MediaTemplate element 
inside the msi package project to define the disk for the output msi.
I don't need to separate the single msi packages, but only the bootstrapper, so 
my question is:Is there a way to the Burn to take the msi packages from 
different locations?
I'd like to insert the first DVD, run the Burn setup and only if I need to 
install a msi package that is located on the second disk the setup would ask 
the user to insert the second DVD disk, how can I do this?
Thanks.

  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Wix Burn with Managed WPF UI - How to deploy on multiple disks

2015-03-17 Thread Marco Tognacci
I have a Burn Managed Bootstrapper with WPF UI.I need to publish my setup using 
a DVD disk.I have many msi packages in the Burn chain, so I want to divide my 
setup application on 2 or more DVD disks.I have seen the MediaTemplate element 
inside the msi package project to define the disk for the output msi.
I don't need to separate the single msi packages, but only the bootstrapper, so 
my question is:Is there a way to the Burn to take the msi packages from 
different locations?
I'd like to insert the first DVD, run the Burn setup and only if I need to 
install a msi package that is located on the second disk the setup would ask 
the user to insert the second DVD disk, how can I do this?
Thanks.
  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
But the commands like /h or /s don't arrive in the Command parse function 
available in the BurnApplication as they are processed from the Base class and 
update the State of the application, for the variables defined in the Burn 
Bundle there is not a way or a special syntax for let the base class processing 
and updating the variables without the need for parsing the command lines 
(using the function of the Command object)
For the variables the only way is to use the Command objects functions to parse 
each variable and set them, could you add a way for doing this by the Engine 
and Base class in the next version? (perhaps adding a parameter in the Burn 
Bundle variable)?

Thanks

> From: r...@firegiant.com
> To: wix-users@lists.sourceforge.net
> Date: Mon, 2 Mar 2015 23:37:18 +
> Subject: Re: [WiX-users] WiX Burn Command Line Options
> 
> The Command object is all parsed for you, ready to go. Just use it.
> 
> _
>  Short replies here. Complete answers over there: http://www.firegiant.com/
> 
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Monday, March 2, 2015 3:09 PM
> To: WiX - users
> Subject: Re: [WiX-users] WiX Burn Command Line Options
> 
> Is there a built in way for passing the value of a Burn Variable as command 
> line options in managed custom Burn setup?Or I need to parse manualli the 
> command lines args and then read the properties and the write them manually?
> Thanks.
> 
> --
> Dive into the World of Parallel Programming The Go Parallel Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for all
> things parallel software development, from weekly thought leadership blogs to
> news, videos, case studies, tutorials and more. Take a look and join the 
> conversation now. http://goparallel.sourceforge.net/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
Is there a built in way for passing the value of a Burn Variable as command 
line options in managed custom Burn setup?Or I need to parse manualli the 
command lines args and then read the properties and the write them manually?
Thanks.


> Date: Mon, 2 Mar 2015 15:44:49 -0700
> From: phogl...@rimage.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] WiX Burn Command Line Options
> 
> This thread
> 
>  
> details the switches (without digging in the source).  Your mba can use the
> Command object (Command.Display) to determine if Burn detected -quiet mode. 
> I added methods to my mba to parse the command line for my custom switches
> and create localized help strings to display when Command.Action ==
> LaunchAction.Help.
> 
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WiX-Burn-Command-Line-Options-tp7599420p7599424.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> Dive into the World of Parallel Programming The Go Parallel Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for all
> things parallel software development, from weekly thought leadership blogs to
> news, videos, case studies, tutorials and more. Take a look and join the 
> conversation now. http://goparallel.sourceforge.net/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
I have a Burn setup package, using a custom WPF interface.I need to pass some 
arguments using command line:
For example I want to set to 10 the value for the variable option and run the 
setup in silent mode.The /s option is processed by Burn system, but not the 
variable, I need to parse the command line by myself inside the Burn 
application.Is there a way for precessing it by the Burn Engine? Is there a 
best practice for doing this?
myinstaller.exe /S option=10
I want even report in the help page all the command lines arguments supported 
for my Setup application.Is there a list or a translated document or string to 
describe the base command line arguments that are processed by the Burn Engine?
Thanks
  
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX Burn Can't make appear all Uninstall - Modify - Repair buttons

2015-02-20 Thread Marco Tognacci
But in this case why there is the option in the Burn Bundle project?Even if it 
doesn't works?

> From: r...@firegiant.com
> To: wix-users@lists.sourceforge.net
> Date: Fri, 20 Feb 2015 19:47:44 +
> Subject: Re: [WiX-users] WiX Burn Can't make appear all Uninstall - Modify
> -   Repair buttons
> 
> ARP decided that only MSIs get a "Repair" button. Definitely a bug. Can you 
> file it against Windows?
> 
> 
>  Short replies here. Complete answers over there: http://www.firegiant.com/
> 
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Friday, February 20, 2015 11:28 AM
> To: WiX - users
> Subject: [WiX-users] WiX Burn Can't make appear all Uninstall - Modify - 
> Repair buttons
> 
> I have made a Burn setup, setting the parametersDisableUnistall="no" 
> DisableModify="no" DisableReapir="no"I have expected to see all three buttons 
> on the unistall programs system window, but only Unistall and Change appear 
> (no Reapir)Is this a bug? How can I make it working?
> Thanks. 
> 
> --
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn Can't make appear all Uninstall - Modify - Repair buttons

2015-02-20 Thread Marco Tognacci
I have made a Burn setup, setting the parametersDisableUnistall="no" 
DisableModify="no" DisableReapir="no"I have expected to see all three buttons 
on the unistall programs system window, but only Unistall and Change appear (no 
Reapir)Is this a bug? How can I make it working?
Thanks.   
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX 3.9 R2 - Debugging WPF Burn Application

2015-01-31 Thread Marco Tognacci
I need to debug the code of My Burn WPF Application, with the version 3.7 I 
just needed to add the engine project to my solution and then add 
breakpoints.With the version 3.9 R2 - it report many errors while compiling the 
engine project:I need to have the folder C:\tools and the the nuger xUnit 
package under C:\ location ?!?!?
What I need to do ? I have to download the entire source code from the 
repository??   
--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] FW: Burn error with document folder on network location (works fine running only the msi)

2015-01-28 Thread Marco Tognacci
I have tried making a perUser setup but even in this case it report the same 
error,  the setup can't find the network location.So what can i make for making 
this working?



> Date: Mon, 26 Jan 2015 14:55:30 -0700
> From: phogl...@rimage.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] FW: Burn error with document folder on network 
> location (works fine running only the msi)
> 
> I think that this was pointed out earlier, but mapped network drives are User
> resources and may not be defined for another user, and would not be
> available to localSystem.
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-error-with-document-folder-on-network-location-works-fine-running-only-the-msi-tp7598703p7599013.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> Dive into the World of Parallel Programming. The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: Burn error with document folder on network location (works fine running only the msi)

2015-01-26 Thread Marco Tognacci
I have changed the code for using XmlConfig instead of XmlFile, but the result 
is the same:The file is installed correctly but when the XmlFile or the 
XmlConfig try to access the file to change an elment of the xml fileit report 
an error that say that it can't find the Drive on network, and the setup 
fail.Any other way to try?It could be that when I install the setup run as 
another administrator user (different from the current user) so it can't see 
the network location as it is specific for the current user ???This problem is 
blocking me, and I can't find a working way with WiX for doing this 
installation.Thanks for any support.


> From: mark...@live.it
> To: wix-users@lists.sourceforge.net
> Date: Fri, 23 Jan 2015 00:44:26 +0100
> Subject: Re: [WiX-users] Burn error with document folder on network location 
> (works fine running only the msi)
> 
> I have changed the code for using XmlConfig instead of XmlFile, but the 
> result is the same:The file is installed correctly but when the XmlFile or 
> the XmlConfig try to access the file to change an elment of the xml fileit 
> report an error that say that it can't find the Drive on network, and the 
> setup fail.
> Any other way to try?
> It could be that when I install the setup run as another administrator user 
> (different from the current user) so it can't see the network location as it 
> is specific for the current user ???
> This problem is blocking me, and I can't find a working way with WiX for 
> doing this installation.Thanks for any support.
> 
> 
> 
> > Date: Sat, 3 Jan 2015 10:21:43 -0700
> > From: nickra...@hotmail.com
> > To: wix-users@lists.sourceforge.net
> > Subject: Re: [WiX-users] Burn error with document folder on network 
> > location (works fine running only the msi)
> > 
> > Okay, so it sounds like you want to:
> > 
> > 1. Install the file to the Documents folder
> > 2. Edit the file in place after it's been installed
> > 
> > I've often seen people posting about having problems using XmlFile. I have
> > always used the XmlConfig element instead and haven't had any problems. You
> > might get less trouble by switching.
> > 
> > Can you show the XmlFile that you're using? Something might stand out.
> > 
> > 
> > 
> > --
> > View this message in context: 
> > http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-error-with-document-folder-on-network-location-works-fine-running-only-the-msi-tp7598703p7598711.html
> > Sent from the wix-users mailing list archive at Nabble.com.
> > 
> > --
> > Dive into the World of Parallel Programming! The Go Parallel Website,
> > sponsored by Intel and developed in partnership with Slashdot Media, is your
> > hub for all things parallel software development, from weekly thought
> > leadership blogs to news, videos, case studies, tutorials and more. Take a
> > look and join the conversation now. http://goparallel.sourceforge.net
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
> GigeNET is offering a free month of service with a new server in Ashburn.
> Choose from 2 high performing configs, both with 100TB of bandwidth.
> Higher redundancy.Lower latency.Increased capacity.Completely compliant.
> http://p.sf.net/sfu/gigenet
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn error with document folder on network location (works fine running only the msi)

2015-01-22 Thread Marco Tognacci
I have changed the code for using XmlConfig instead of XmlFile, but the result 
is the same:The file is installed correctly but when the XmlFile or the 
XmlConfig try to access the file to change an elment of the xml fileit report 
an error that say that it can't find the Drive on network, and the setup fail.
Any other way to try?
It could be that when I install the setup run as another administrator user 
(different from the current user) so it can't see the network location as it is 
specific for the current user ???
This problem is blocking me, and I can't find a working way with WiX for doing 
this installation.Thanks for any support.



> Date: Sat, 3 Jan 2015 10:21:43 -0700
> From: nickra...@hotmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Burn error with document folder on network location 
> (works fine running only the msi)
> 
> Okay, so it sounds like you want to:
> 
> 1. Install the file to the Documents folder
> 2. Edit the file in place after it's been installed
> 
> I've often seen people posting about having problems using XmlFile. I have
> always used the XmlConfig element instead and haven't had any problems. You
> might get less trouble by switching.
> 
> Can you show the XmlFile that you're using? Something might stand out.
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-error-with-document-folder-on-network-location-works-fine-running-only-the-msi-tp7598703p7598711.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn error with document folder on network location (works fine running only the msi)

2015-01-03 Thread Marco Tognacci
IN this first try I have installed the file in the User Documents folder, and 
then I try to change some attributes of the xml file using XmlFile wix 
extension but it report an error that cannot open the xml file to modify it (I 
haven't the exact error message as I'm out of office till 7)

Any Suggestion, about hot to proceed, or what I could try?



> Date: Sat, 3 Jan 2015 09:23:02 -0700
> From: nickra...@hotmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Burn error with document folder on network location 
> (works fine running only the msi)
> 
> /1) First try - I have installed the file on the Document's folder and the
> modified it with the wix extension XmlFile.this work for coping the file but
> fail to modify it as reported the error that it can't find the file to
> modify/
> 
> Some questions I have:
> 1. What error are you seeing?
> 
> 2. What are you trying to do? "Copying", in my mind, means that you want to
> have the file in two places -- the Documents folder and somewhere else. Or,
> do you simply want to "install" the file to the Documents folder and have
> that be the only place that the file exists?
> 
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-error-with-document-folder-on-network-location-works-fine-running-only-the-msi-tp7598703p7598709.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Burn error with document folder on network location (works fine running only the msi)

2015-01-01 Thread Marco Tognacci
I need to copy an xml file on the User Document's folder and I need to change 
some attribute of the elements inside the xml file based on user choices during 
setup.If the user has the document's folder located on a network path the setup 
fail as it can't locate the location.
I have made this inside the msi package:1) First try - I have installed the 
file on the Document's folder and the modified it with the wix extension 
XmlFile.this work for coping the file but fail to modify it as reported the 
error that it can't find the file to modify2) Second try - I have installed the 
file on a temp folder on local machine and the using the XmlFile extension 
change the file and then I have copied it to the Document's folder using a 
Custom Action (using the stream reader and writer to read and the write the new 
file as using System.File.Copy report an error).This second way seem working 
fine using the msi package, as it can install without problems even with users 
that have the Document's folder located on a network path.
The problem now is with Burn:I have made a Burn exe package running the msi 
package and now if I run the setup it report an error as it can't locate the 
network path.
So where could be the problem? Wich are the differences running the single msi 
and the Burn package?The runs with different users? (if it run with an 
administrative user that is not the current user it could not see the nethwork 
path where is located the document's folder for the current user)Or they runs 
with differents priviledges? as the msi can copy the file with the stream 
writer inside the custom action but running it insode Burn It can't find the 
destination path for priviledges problems?
Thanks.   
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Heat harvest a directory generating PayloadGroup

2014-12-06 Thread Marco Tognacci
I have an exe (or msi) package that need to have some folders in the same root 
to works. I need to add it to the Burn bootstrapper.As I take this msi from an 
automatic build the content of the folders that are deployed with the msi could 
change so I need to use Heat to harvest the main folder where is the setup.msi 
and the other folders.I'd like to add an element in the burn project to run 
Heat like HeatDirectory, but there is not the option for generating 
PayloadGroup.I have found only the parameter calling heat from command line. 
Could you add this parameter to the HeadDirectory element, or is there a way 
for extending it?I need even not to add the setup.msi as a payload.
Thanks.   
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Cant get util:RemoveFolderEx to work on network drive

2014-12-06 Thread Marco Tognacci
I have a similar issue using WixElement to modify an xml file located on the 
personal folders that is located on the network for some users.In this case the 
deployment of the file to the user document folders works fine but if I use 
XmlFile element to modify the file it report an error and it can't find it 
(this problem is reported by the msi)To workaround this problem I have 
installed the file on the local temp folder, modify it with XmlFile and then 
with a custom action copied it to the user document folder located on the 
network.This procedure works if I run the msi directly, but if I add it to a 
Burn bootstrapper and run the Burn setup.exe it report an error?How can I fix 
it?

> Date: Fri, 5 Dec 2014 10:01:40 -0800
> From: phildgwil...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Cant get util:RemoveFolderEx to work on network  
> drive
> 
> I don't know how much this is related to your problem, but mapped
> drive letters are difficult for a number of reasons. They are not
> system wide because they belong to the user profile. There's also the
> issue that the system account usually has limited access (or none) to
> the network. To make it even worse, impersonation does not load the
> user's profile, the stuff that includes the mapped drives.  So if the
> code runs without impersonation the system account can't get to the
> network. If you run impersonated you may not see the H: drive and by
> default won't be elevated.
> 
> The general advice in these cases is to use the actual share name to
> avoid the mapped drive letter issues, but access is going to be an
> issue, that's probably where you need to look.
> ---
> Phil Wilson
> 
> 
> On Fri, Dec 5, 2014 at 9:16 AM, Rob Mensching  wrote:
> > It's about Windows Installer functionality not WiX functionality.
> >
> > _
> >  Short replies here. Complete answers over there: http://www.firegiant.com/
> >
> >
> > -Original Message-
> > From: Samir [mailto:samir.elyahia...@hiq.se]
> > Sent: Friday, December 5, 2014 3:15 AM
> > To: wix-users@lists.sourceforge.net
> > Subject: Re: [WiX-users] Cant get util:RemoveFolderEx to work on network 
> > drive
> >
> > Thanks for the reply Namrata Kumari.
> >
> > What I'm guessing that you are saying, is that removing files on the 
> > network is not supported by WIX. Since I'm able to delete one of the two 
> > folders on the network drive.
> >
> > Regards Samir
> >
> > --
> > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> > from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> > with Interactivity, Sharing, Native Excel Exports, App Integration & more
> > Get technology previously reserved for billion-dollar corporations, FREE
> > http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Latest build wix 3.10 visual studio 2013 problem

2014-12-03 Thread Marco Tognacci
I have updated to the latest 3.10 build and I have reported this problem to the 
Visual Studio 2013, when I open the property page of a c++ project I have no 
more the property grid where are the properties of the project. Uninstalling 
wix 3.10 all Return working normally.

Inviata dal mio Windows Phone
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Copy file after modify

2014-11-28 Thread Marco Tognacci
I need to deploy an xml file and the modify it. I need to put it on the user 
documenta folder, but in this case I can publish the file but the XmlFile 
element user to modify the xml fail as it can't open the file.

To fix this I have tried to use the element Permission and PermissionEx to the 
user documenta folder, but it not works.

So I have tried to deploy the file in the InstallFolder, modify it with the 
XmlFile element and the use CopyFile to copy the modified file to the user 
document folder, but in this way the file is copied before the modify. IS there 
any way to schedule the Operations

- install file on InstallFolder
- modify xml file
- copy modified file to user documenta folder

??

Inviata dal mio Windows Phone
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Create network folder

2014-11-27 Thread Marco Tognacci
I need to create a folder with a network path, is there any way to define it 
with the Directory element?



Inviata dal mio Windows Phone
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] UNC path can't modify a file

2014-11-26 Thread Marco Tognacci
So what I need to do? How can I use a custom action to change the file on the 
network folder?

I could use the PermissionEx to give the permission to the PersonalFolders? 

   
   
   




I have tried mapping to local drive:
If I have the UNC path \\myserver\myUser$\Documents to map the User Documents 
to a network folder, I could create logical link to a drive for example I could 
map \\myserver\myUser$ to local drive X:\ so the Documents folder could be 
X:\Documents
I could call the c++ API to add the connection and remove
[DllImport("mpr.dll")]static extern UInt32 WNetAddConnection2(ref NETRESOURCE 
lpNetResource, string lpPassword, string lpUsername, uint 
dwFlags);[DllImport("mpr.dll")]static extern uint WNetCancelConnection2(string 
lpName, uint dwFlags, bool bForce);


> Date: Wed, 26 Nov 2014 12:05:50 -0800
> From: phildgwil...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] UNC path can't modify a file
> 
> If this is a deferred CA in a per machine install the code will be
> running with the system account which usually has not network access
> privileges.  What does "mapping to a local folder" mean?
> ---
> Phil Wilson
> 
> 
> On Wed, Nov 26, 2014 at 9:16 AM, Marco Tognacci  wrote:
> > I need to modify an xml file located uding UNC path on the network.
> > I tried XmlFile but it report an error "failed to open the file".
> > IS there any way For doing this? I could use a custom action but I have the 
> > same problem accessing the file.
> > I need to map the UNC path to a local folder? How to do thid?
> >
> >
> >
> >
> > Inviata dal mio Windows Phone
> > --
> > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> > from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> > with Interactivity, Sharing, Native Excel Exports, App Integration & more
> > Get technology previously reserved for billion-dollar corporations, FREE
> > http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-26 Thread Marco Tognacci
I have tried to create a custom action with Impersonate=yes and 
Execute=Immediately but even with this I can't access the file inside the 
Custom Action.
Is there any way to make the XmlFile element working for modify the xml file 
located on the network folder?The user have the access to the network and can 
modify the file, as I have tried the same code inside a sample application and 
in this application works, can access and modify the file.


> Date: Wed, 26 Nov 2014 10:39:50 -0700
> From: robert_y...@agilent.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] XmlFile fail to write on network folder file
> 
> In order to do this you need to run as a user identity that has network
> privileges and access to the network location you need to access.  If you
> have Impersonate=no and Execute=deferred in your custom action, then you
> will be running as LocalSystem, which does not have network privileges.
> 
> 
> mark222 wrote
> > I have tried to use a custom action for access the file from a network
> > location, then update its content and save again in the network folder.I
> > have used XDocument.Load(@"\\mynetwork\myfile.xml") to read the file but I
> > receive an access violation exception for the permission.Is there any way
> > for giving the rights to the custom action to acees and modify a file on
> > the network?I need to open and modify a file on the user documents folder
> > that is located on a network folder.
> > 
> > 
> >> To: 
> 
> > wix-users@.sourceforge
> 
> >> From: 
> 
> > mark222@
> 
> >> Date: Tue, 25 Nov 2014 10:31:55 +0100
> >> Subject: [WiX-users] XmlFile fail to write on network folder file
> >> 
> >> I have used XmlFile element to modify an xml file located under the user
> >> document folder, it fails if the user document folder is mapped on a
> >> network folder. How to male this work? IS there any way to modify a file
> >> on a network directory?
> >> 
> >> 
> >> Inviata dal mio Windows Phone
> >> --
> >> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> >> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> >> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> >> Get technology previously reserved for billion-dollar corporations, FREE
> >> http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
> >> ___
> >> WiX-users mailing list
> >> 
> 
> > WiX-users@.sourceforge
> 
> >> https://lists.sourceforge.net/lists/listinfo/wix-users
> >   
> > --
> > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> > from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> > with Interactivity, Sharing, Native Excel Exports, App Integration & more
> > Get technology previously reserved for billion-dollar corporations, FREE
> > http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
> > ___
> > WiX-users mailing list
> 
> > WiX-users@.sourceforge
> 
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/XmlFile-fail-to-write-on-network-folder-file-tp7598221p7598264.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] UNC path can't modify a file

2014-11-26 Thread Marco Tognacci
I need to modify an xml file located uding UNC path on the network.
I tried XmlFile but it report an error "failed to open the file".
IS there any way For doing this? I could use a custom action but I have the 
same problem accessing the file.
I need to map the UNC path to a local folder? How to do thid?




Inviata dal mio Windows Phone
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Can't modify file on network path

2014-11-26 Thread Marco Tognacci
I need to modify a file on network folder
"\\myfolder\myfile.xml"
I have user XmlFile but it report an error because it use the cpp call to 
CreateFile but not call WNetAddConnection2 and this would create the network 
connection.

I have tried to do this on a c# custom action but I have error when I try to 
access the file.

How can I do?





Inviata dal mio Windows Phone
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-25 Thread Marco Tognacci
I have tried to use a custom action for access the file from a network 
location, then update its content and save again in the network folder.I have 
used XDocument.Load(@"\\mynetwork\myfile.xml") to read the file but I receive 
an access violation exception for the permission.Is there any way for giving 
the rights to the custom action to acees and modify a file on the network?I 
need to open and modify a file on the user documents folder that is located on 
a network folder.


> To: wix-users@lists.sourceforge.net
> From: mark...@live.it
> Date: Tue, 25 Nov 2014 10:31:55 +0100
> Subject: [WiX-users] XmlFile fail to write on network folder file
> 
> I have used XmlFile element to modify an xml file located under the user 
> document folder, it fails if the user document folder is mapped on a network 
> folder. How to male this work? IS there any way to modify a file on a network 
> directory?
> 
> 
> Inviata dal mio Windows Phone
> --
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] XmlFile fail to write on network folder file

2014-11-25 Thread Marco Tognacci
I have used XmlFile element to modify an xml file located under the user 
document folder, it fails if the user document folder is mapped on a network 
folder. How to male this work? IS there any way to modify a file on a network 
directory?


Inviata dal mio Windows Phone
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Force a MajorUpgrade to do complete uninstall BEFORE new install

2014-11-04 Thread Marco Tognacci
I have posted the same question a few days ago and I have received the same 
answer, I think it's a bug of WiX Burn.I this way I can't execute upgrade of 
the Burn package as it creates many problems to my application that will not 
work fine.I need even to add a custom action to clear some folders that 
contains files generated at runtime, but in this way it will delete even the 
new files installed as the uninstall operation will execute after install.If I 
can't find a way to make this working I'll be forced to search for another tool 
to make my setup projects.Thanks.

> From: mark...@live.it
> To: wix-users@lists.sourceforge.net
> Date: Mon, 3 Nov 2014 23:42:21 +0100
> Subject: Re: [WiX-users] Force a MajorUpgrade to do complete uninstall BEFORE 
> new install
> 
> I have the same problem I haven't set the Schedule property of the 
> MajorUpgrade as the default is "afterInstallValidate" and this is prior to 
> install, so is there a bug?
> 
> > Date: Mon, 3 Nov 2014 10:41:25 -0800
> > From: shane_cor...@selinc.com
> > To: wix-users@lists.sourceforge.net
> > Subject: Re: [WiX-users] Force a MajorUpgrade to do complete uninstall 
> > BEFORE new install
> > 
> > Right now it's scheduled as afterInstallValidate.  Doesn't that happen prior
> > to install validate?
> > 
> > 
> > 
> > --
> > View this message in context: 
> > http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Force-a-MajorUpgrade-to-do-complete-uninstall-BEFORE-new-install-tp7597686p7597688.html
> > Sent from the wix-users mailing list archive at Nabble.com.
> > 
> > --
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Force a MajorUpgrade to do complete uninstall BEFORE new install

2014-11-03 Thread Marco Tognacci
I have the same problem I haven't set the Schedule property of the MajorUpgrade 
as the default is "afterInstallValidate" and this is prior to install, so is 
there a bug?

> Date: Mon, 3 Nov 2014 10:41:25 -0800
> From: shane_cor...@selinc.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Force a MajorUpgrade to do complete uninstall BEFORE 
> new install
> 
> Right now it's scheduled as afterInstallValidate.  Doesn't that happen prior
> to install validate?
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Force-a-MajorUpgrade-to-do-complete-uninstall-BEFORE-new-install-tp7597686p7597688.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: WiX Burn: how to Force Major Upgrade for a 3dparty msi package

2014-10-24 Thread Marco Tognacci
I have an msi package from another company that doesn't manage upgrade well, 
they allow to make minor and major upgrade but the package works well only if 
you uninstall, clear all the application folder and then make a new 
installation.I can't modify the package as I have only the msi file, and they 
can't fix the problem.
I make a Burn package adding this package to the chain, so I'd like to force 
Major upgrade from WiX Burn.I have added an ExePackage before this msi package 
to run a script that call msiexec /X{} /qn and then remove the 
installation folder and in this way it seem to work.The problem is that if the 
msi package is already installed, the package is marked as
MyMsiPackage - Detect: Present, default request: Present, ba request: Present, 
execute: None (or MinorUpgrade)
As I uninstall the package using the script that run after the plan operation, 
the msi package is marked as present so the execute action is none (if the 
package version is the same) or MinorUpgrade (if the version change)
In both cases as I haveuninstalled the package It doesnt install the pakage (in 
the first case not start the installation, in the second the minor upgrade 
report errors)
Is there a way for setting the detect of the msi to absent? as to force the 
installation of the package in any way? 
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: R: WiX Burn Major Upgrade Uninstall the old msi packages but not install the new msi packages

2014-10-24 Thread Marco Tognacci
I have added the MajorUpgrade ad shown in the wix help
I haven't assigned the Schedule value as it is for 
default "afterInstallValidate" as reported in the WiX help
Schedule => Determines the scheduling of the RemoveExistingProducts standard 
action, which is when the installed product is removed. The default is 
"afterInstallValidate" which removes the installed product entirely before 
installing the upgrade product. It's slowest but gives the most flexibility in 
changing components and features in the upgrade product.-
But what I can see from the logs is that when I run the Burn setup it start and 
perform the installation of all the msi packages and then start the unistall of 
the old Burn setup that perform the uninstall of the msi package.
As I can see the msi is not involved in the perform of the upgrade but it's 
Burn that call the install and the uninstall of the package.
As another proof I have tried to install and the upgrade the only msi package 
running it directly.In the case of a minor upgrade (changing only the revision 
number) it doesn't perform the uninstall of the old package but only the minor 
upgrade.In the case of a major upgrade (changing the first version number) it 
does all correctly, uninstall the old package and the install the new one.
So where is the problem is Bur bugged in the version 3.8? I have missed 
something?As I have seen the element MajoutUpgrade on the msi package not block 
the minor upgrade but is used only if it's added using Burn.But using Burn is 
the bootstrapper that command the process and install first and then uninstall.
So where is the problem?I'm really disappointed, I'm near to give up with using 
WiX and Burn.
As soon as possible I'll try to add a simplified sample to reproduce the 
problem,Thanks


> Date: Tue, 14 Oct 2014 11:17:27 -0700
> From: phildgwil...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] R: WiX Burn Major Upgrade Uninstall the old msi 
> packages but not install the new msi packages
> 
> If your MSI package has the MajorUpgrade element to perform the
> upgrade, then that's what's doing the upgrade, so you perhaps have it
> scheduled afterInstallExecute, which means the uninstall happens after
> the new product is installed. If you schedule it afterInstallInitlize
> it will remove the old product first.
> ---
> Phil Wilson
> 
> 
> On Tue, Oct 14, 2014 at 1:48 AM, Marco Tognacci  wrote:
> > The burn log says that first is installed the new Version of My package 
> > then is uninstalled the old Version of My package. As myPackage remove some 
> > folders on uninstall, it remove even the new files intalled by the new 
> > Version of myPackage. IS there a way to force burn setup to perform first 
> > uninstall of the old Version of myPackage and then perfom the intall of the 
> > new Version of myPavkage? myPackage have the MajorUpgrade element, and 
> > I'using wix 3.8.
> >
> > Inviata dal mio Windows Phone
> > 
> > Da: Hoover, Jacob<mailto:jacob.hoo...@greenheck.com>
> > Inviato: ‎06/‎10/‎2014 20:41
> > A: General discussion about the WiX 
> > toolset.<mailto:wix-users@lists.sourceforge.net>
> > Oggetto: Re: [WiX-users] WiX Burn Major Upgrade Uninstall the old msi 
> > packages but not install the new msi packages
> >
> > The bundle log will tell you what it did and why it did it. Are you using 
> > WixStdBA or your own BA?
> >
> > -Original Message-
> > From: Marco Tognacci [mailto:mark...@live.it]
> > Sent: Monday, October 06, 2014 1:24 PM
> > To: WiX - users
> > Subject: [WiX-users] WiX Burn Major Upgrade Uninstall the old msi packages 
> > but not install the new msi packages
> >
> > I have made a Burn setup package with the last official WiX release 3.8.I 
> > have some msi package inside the Burn chain, for example packA.msi version 
> > number 1.0.0.0packB.msi version number 1.0.0.0 the burn package genrated 
> > isburn.exe version number 1.0.0.0 then I need to update one of the packages 
> > and regenerate the burn setup again packA.msi version number 
> > 1.1.0.0packB.msi version number 1.0.0.0burn.exe version number 1.1.0.0
> >
> > when I install the new package burn call the uninstall of all package but 
> > not install the new packages.Is there any bug in WiX 3.8 about upgrading 
> > Burn? or There is some problems in how I make the burn package for 
> > upgrading?
> > --
> > Slashdot TV.  Videos for Nerds.  Stuff that Matters.
> > http://pubads.g.doubleclick.net/gampad/clk?id=160591471&

[WiX-users] FW: Managed Burn Bootstrapper not localize prerequisites window

2014-10-24 Thread Marco Tognacci
The Burn Managed bootstrapper of the version 3.9 not works in localizing the 
Prerequisites window.I'm in Italy, and I have tried to install on a english 
Windows 7 OS and the prerequisites window appear localized in Italian not in 
english.The prerequisite that I need to Install, the Net Framework 4.5.2, is 
correcly localized in english if I run it directly?Is it a bug, or is there 
some other configuration to set?
   
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: WiX Burn: how to Force Major Upgrade for a 3dparty msi package

2014-10-24 Thread Marco Tognacci
I have an msi package from another company that doesn't manage upgrade well, 
they allow to make minor and major upgrade but the package works well only if 
you uninstall, clear all the application folder and then make a new 
installation.I can't modify the package as I have only the msi file, and they 
can't fix the problem.
I make a Burn package adding this package to the chain, so I'd like to force 
Major upgrade from WiX Burn.I have added an ExePackage before this msi package 
to run a script that call msiexec /X{} /qn and then remove the 
installation folder and in this way it seem to work.The problem is that if the 
msi package is already installed, the package is marked as
MyMsiPackage - Detect: Present, default request: Present, ba request: Present, 
execute: None (or MinorUpgrade)
As I uninstall the package using the script that run after the plan operation, 
the msi package is marked as present so the execute action is none (if the 
package version is the same) or MinorUpgrade (if the version change)
In both cases as I haveuninstalled the package It doesnt install the pakage (in 
the first case not start the installation, in the second the minor upgrade 
report errors)
Is there a way for setting the detect of the msi to absent? as to force the 
installation of the package in any way? 
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: Burn setup automatic testing

2014-10-24 Thread Marco Tognacci
I have made a Burn setup I need to perform unit testing to ensure that after a 
build my setup is ok.I need to test that If I choose to install a feature in 
the Managed UI WPF the Burn setup finally install, or uninstall, or upgrade a 
package or feature.Then I need to test the entire install and uninstall process 
to verify if my application is installed and uninstalled correctly.
How can I make this auto test?  
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: Unzip file after install

2014-10-24 Thread Marco Tognacci
I have some folders with localized html documentation, each folder contains 
many files, and they are not vital for my application, I harvest the folder 
using heat to build the wxs and then the msi.The installation of these folders 
is very very slow as heat doesn't order the files based on directory and the 
setup when during install will change the current directory for each file to 
install, and every file is marked as keypath.
To speed up installation process I'd like to add the zipped folders to my msi 
and then unzip them with a custom action, is there any build in system for 
doing this with WiX, using an extension for example? I need to add each 
localized folder inside a different msiFeature and then I need to run the 
custom action when the feature is selected to be installed (and removed on 
uninstall removeing all the folder).
Apart of the speedup of the installation process, I have a problem with some 
folders that I can't harvest using heat as the full path of files with relative 
folders tree exceed the max limit of characters that can be passed to heat.exe 
as command args for the path of the folder to harvest, and in this case using 
the zipped folders to be unzipped from the msi during installation will be the 
only choice.
Which is the best way for doing this?   
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: WiX Burn setup is very very slow

2014-10-24 Thread Marco Tognacci
I have made a Burn setup with several msi packages.In my package I use Heat to 
harvest directory and package differents features such as languages files 
located in different folders of my application.To make the setup works I need 
to ad a suffix, for example the languade identity for each foder so that I can 
reference to the same folder component for each language feature using a 
different Id.
In this way the folders and files are not ordered to make the files grouped 
depend on folder location as they will be installed in sequence.Is there any 
way to make the msi tables reordered based on folder location so during 
installation all the files of a folder will be installed at the same time 
reducing the number of changing folder operations.
I have read that changing folder during installation is very time consuming, so 
how to prevent and optimize this?Heat harvesting don't take care about the 
folder locations so for each file installed the MSIEXEC will change current 
folder.
It will be possible to reorder the files based on folder location in the msi 
table during compiling process of msi?  
 
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: How to speed up building burn package

2014-10-24 Thread Marco Tognacci
I have a solution with a Burn package and several MSI packages. I'm using WiX 
3.8 official.
Is there any way to speed up the building of the solution? is there any way for 
parallelizing building of each msi? or to build multiple msi?The main package 
msi contains languages divided into different features inside the msi package, 
it could be better to have each language in a separate msi language pack?
For each msi I have encapsulated the cab file but I have set it with no 
compression in the media element.I Run HarvestDirectory one time and then apply 
several sxlt transformation using MSBuild transformation to make different wsx 
to create different feature to install.
The Burn package not compress the msi packages inside the burn exe. 
  
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Unzip file after install

2014-10-20 Thread Marco Tognacci
I have some folders with localized html documentation, each folder contains 
many files, and they are not vital for my application, I harvest the folder 
using heat to build the wxs and then the msi.The installation of these folders 
is very very slow as heat doesn't order the files based on directory and the 
setup when during install will change the current directory for each file to 
install, and every file is marked as keypath.
To speed up installation process I'd like to add the zipped folders to my msi 
and then unzip them with a custom action, is there any build in system for 
doing this with WiX, using an extension for example? I need to add each 
localized folder inside a different msiFeature and then I need to run the 
custom action when the feature is selected to be installed (and removed on 
uninstall removeing all the folder).
Apart of the speedup of the installation process, I have a problem with some 
folders that I can't harvest using heat as the full path of files with relative 
folders tree exceed the max limit of characters that can be passed to heat.exe 
as command args for the path of the folder to harvest, and in this case using 
the zipped folders to be unzipped from the msi during installation will be the 
only choice.
Which is the best way for doing this? 
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Can't add new Bug: Managed Burn Bootstrapper not localize prerequisites window

2014-10-18 Thread Marco Tognacci
I have tried to add a bug about burn localization, but It reported an error, so 
I publish it here.




The Burn Managed bootstrapper of the version 3.9 not works in localizing the 
Prerequisites window.I'm in Italy, and I have tried to install on a english 
Windows 7 OS and the prerequisites window appear localized in Italian not in 
english.The prerequisite that I need to Install is the Net Framework 4.5.2, if 
I install it directly from the net framework exe it is correcly localized.
I have the same problem in my Burn application, when the setup start it copy on 
the temp folder all the folders with localized text, but it seen not to 
recognize the language of the system.

  
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn setup is very very slow

2014-10-18 Thread Marco Tognacci
I have made a Burn setup with several msi packages.In my package I use Heat to 
harvest directory and package differents features such as languages files 
located in different folders of my application.To make the setup works I need 
to ad a suffix, for example the languade identity for each foder so that I can 
reference to the same folder component for each language feature using a 
different Id.
In this way the folders and files are not ordered to make the files grouped 
depend on folder location as they will be installed in sequence.Is there any 
way to make the msi tables reordered based on folder location so during 
installation all the files of a folder will be installed at the same time 
reducing the number of changing folder operations.
I have read that changing folder during installation is very time consuming, so 
how to prevent and optimize this?Heat harvesting don't take care about the 
folder locations so for each file installed the MSIEXEC will change current 
folder.
It will be possible to reorder the files based on folder location in the msi 
table during compiling process of msi?   
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Burn setup automatic testing

2014-10-18 Thread Marco Tognacci
I have made a Burn setup I need to perform unit testing to ensure that after a 
build my setup is ok.I need to test that If I choose to install a feature in 
the Managed UI WPF the Burn setup finally install, or uninstall, or upgrade a 
package or feature.Then I need to test the entire install and uninstall process 
to verify if my application is installed and uninstalled correctly.
How can I make this auto test?
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to speed up building burn package

2014-10-18 Thread Marco Tognacci
I have a solution with a Burn package and several MSI packages. I'm using WiX 
3.8 official.
Is there any way to speed up the building of the solution? is there any way for 
parallelizing building of each msi? or to build multiple msi?The main package 
msi contains languages divided into different features inside the msi package, 
it could be better to have each language in a separate msi language pack?
For each msi I have encapsulated the cab file but I have set it with no 
compression in the media element.I Run HarvestDirectory one time and then apply 
several sxlt transformation using MSBuild transformation to make different wsx 
to create different feature to install.
The Burn package not compress the msi packages inside the burn exe. 
  
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Managed Burn Bootstrapper not localize prerequisites window

2014-10-14 Thread Marco Tognacci
The Burn Manages bootstrapper of the version 3.9 not works in localizing the 
Prerequisites window.I'm in Italy, and I have tried to install on a english 
Windows 7 OS and the prerequisites window appear localized in Italian not in 
english.The prerequisite that I need to Install the Net Framework 4.5.2 is 
correcly localized in english if I run it directly?Is it a bug, or is there 
some other configuration to set? 
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] R: WiX Burn Major Upgrade Uninstall the old msi packages but not install the new msi packages

2014-10-14 Thread Marco Tognacci
I have added the MajorUpgrade ad shown in the wix help
I haven't assigned the Schedule value as it is for 
default "afterInstallValidate" as reported in the WiX help
Schedule => Determines the scheduling of the RemoveExistingProducts standard 
action, which is when the installed product is removed. The default is 
"afterInstallValidate" which removes the installed product entirely before 
installing the upgrade product. It's slowest but gives the most flexibility in 
changing components and features in the upgrade product.-
But what I can see from the logs is that when I run the Burn setup it start and 
perform the installation of all the msi packages and then start the unistall of 
the old Burn setup that perform the uninstall of the msi package.
As I can see the msi is not involved in the perform of the upgrade but it's 
Burn that call the install and the uninstall of the package.
As another proof I have tried to install and the upgrade the only msi package 
running it directly.In the case of a minor upgrade (changing only the revision 
number) it doesn't perform the uninstall of the old package but only the minor 
upgrade.In the case of a major upgrade (changing the first version number) it 
does all correctly, uninstall the old package and the install the new one.
So where is the problem is Bur bugged in the version 3.8? I have missed 
something?As I have seen the element MajoutUpgrade on the msi package not block 
the minor upgrade but is used only if it's added using Burn.But using Burn is 
the bootstrapper that command the process and install first and then uninstall.
So where is the problem?I'm really disappointed, I'm near to give up with using 
WiX and Burn.
As soon as possible I'll try to add a simplified sample to reproduce the 
problem,Thanks


> Date: Tue, 14 Oct 2014 11:17:27 -0700
> From: phildgwil...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] R: WiX Burn Major Upgrade Uninstall the old msi 
> packages but not install the new msi packages
> 
> If your MSI package has the MajorUpgrade element to perform the
> upgrade, then that's what's doing the upgrade, so you perhaps have it
> scheduled afterInstallExecute, which means the uninstall happens after
> the new product is installed. If you schedule it afterInstallInitlize
> it will remove the old product first.
> ---
> Phil Wilson
> 
> 
> On Tue, Oct 14, 2014 at 1:48 AM, Marco Tognacci  wrote:
> > The burn log says that first is installed the new Version of My package 
> > then is uninstalled the old Version of My package. As myPackage remove some 
> > folders on uninstall, it remove even the new files intalled by the new 
> > Version of myPackage. IS there a way to force burn setup to perform first 
> > uninstall of the old Version of myPackage and then perfom the intall of the 
> > new Version of myPavkage? myPackage have the MajorUpgrade element, and 
> > I'using wix 3.8.
> >
> > Inviata dal mio Windows Phone
> > 
> > Da: Hoover, Jacob<mailto:jacob.hoo...@greenheck.com>
> > Inviato: ‎06/‎10/‎2014 20:41
> > A: General discussion about the WiX 
> > toolset.<mailto:wix-users@lists.sourceforge.net>
> > Oggetto: Re: [WiX-users] WiX Burn Major Upgrade Uninstall the old msi 
> > packages but not install the new msi packages
> >
> > The bundle log will tell you what it did and why it did it. Are you using 
> > WixStdBA or your own BA?
> >
> > -Original Message-
> > From: Marco Tognacci [mailto:mark...@live.it]
> > Sent: Monday, October 06, 2014 1:24 PM
> > To: WiX - users
> > Subject: [WiX-users] WiX Burn Major Upgrade Uninstall the old msi packages 
> > but not install the new msi packages
> >
> > I have made a Burn setup package with the last official WiX release 3.8.I 
> > have some msi package inside the Burn chain, for example packA.msi version 
> > number 1.0.0.0packB.msi version number 1.0.0.0 the burn package genrated 
> > isburn.exe version number 1.0.0.0 then I need to update one of the packages 
> > and regenerate the burn setup again packA.msi version number 
> > 1.1.0.0packB.msi version number 1.0.0.0burn.exe version number 1.1.0.0
> >
> > when I install the new package burn call the uninstall of all package but 
> > not install the new packages.Is there any bug in WiX 3.8 about upgrading 
> > Burn? or There is some problems in how I make the burn package for 
> > upgrading?
> > --
> > Slashdot TV.  Videos for Nerds.  Stuff that Matters.
> > http://pubads.g.doubleclick.net/gampad/clk?id=160591471&

[WiX-users] R: WiX Burn Major Upgrade Uninstall the old msi packages but not install the new msi packages

2014-10-14 Thread Marco Tognacci
The burn log says that first is installed the new Version of My package then is 
uninstalled the old Version of My package. As myPackage remove some folders on 
uninstall, it remove even the new files intalled by the new Version of 
myPackage. IS there a way to force burn setup to perform first uninstall of the 
old Version of myPackage and then perfom the intall of the new Version of 
myPavkage? myPackage have the MajorUpgrade element, and I'using wix 3.8.

Inviata dal mio Windows Phone

Da: Hoover, Jacob<mailto:jacob.hoo...@greenheck.com>
Inviato: ‎06/‎10/‎2014 20:41
A: General discussion about the WiX 
toolset.<mailto:wix-users@lists.sourceforge.net>
Oggetto: Re: [WiX-users] WiX Burn Major Upgrade Uninstall the old msi packages 
but not install the new msi packages

The bundle log will tell you what it did and why it did it. Are you using 
WixStdBA or your own BA?

-Original Message-
From: Marco Tognacci [mailto:mark...@live.it]
Sent: Monday, October 06, 2014 1:24 PM
To: WiX - users
Subject: [WiX-users] WiX Burn Major Upgrade Uninstall the old msi packages but 
not install the new msi packages

I have made a Burn setup package with the last official WiX release 3.8.I have 
some msi package inside the Burn chain, for example packA.msi version number 
1.0.0.0packB.msi version number 1.0.0.0 the burn package genrated isburn.exe 
version number 1.0.0.0 then I need to update one of the packages and regenerate 
the burn setup again packA.msi version number 1.1.0.0packB.msi version number 
1.0.0.0burn.exe version number 1.1.0.0

when I install the new package burn call the uninstall of all package but not 
install the new packages.Is there any bug in WiX 3.8 about upgrading Burn? or 
There is some problems in how I make the burn package for upgrading?
--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn: how to Force Major Upgrade for a 3dparty msi package

2014-10-13 Thread Marco Tognacci
I have an msi package from another company that doesn't manage upgrade well, 
they allow to make minor and major upgrade but the package works well only if 
you uninstall, clear all the application folder and then make a new 
installation.I can't modify the package as I have only the msi file, and they 
can't fix the problem.
I make a Burn package adding this package to the chain, so I'd like to force 
Major upgrade from WiX Burn.I have added an ExePackage before this msi package 
to run a script that call msiexec /X{} /qn and then remove the 
installation folder and in this way it seem to work.The problem is that if the 
msi package is already installed, the package is marked as
MyMsiPackage - Detect: Present, default request: Present, ba request: Present, 
execute: None (or MinorUpgrade)
As I uninstall the package using the script that run after the plan operation, 
the msi package is marked as present so the execute action is none (if the 
package version is the same) or MinorUpgrade (if the version change)
In both cases as I haveuninstalled the package It doesnt install the pakage (in 
the first case not start the installation, in the second the minor upgrade 
report errors)
Is there a way for setting the detect of the msi to absent? as to force the 
installation of the package in any way?   
--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn Managed WPF not localiza the standard windows for installing prerequisites

2014-10-10 Thread Marco Tognacci
I have a burn setup with custom WPF UI, the localization for this part is made 
with custom localization using c#.I added the standard wix page for installing 
Net Framework as prerequisites using the standard localization that use 
#loc.STRINGNAME, but the dialog is displayed always in Italy, my country 
language even if I try to install it on a English OS system.What I need to do 
to have even this dialog localized?  
--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://p.sf.net/sfu/Zoho
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Wix msi setup clear and remove remove installation folder on uninstall

2014-10-06 Thread Marco Tognacci
So what would you do to clear the application folder after uninstall?Can you 
add a sample code in detail?Thanks.


> From: jocoo...@jackhenry.com
> To: wix-users@lists.sourceforge.net
> Date: Mon, 6 Oct 2014 21:40:26 +
> Subject: Re: [WiX-users] Wix msi setup clear and remove remove installation 
> folder on uninstall
> 
> Neither.  In my case, stopping the AppPool would probably allow all the files 
> (and the folders) to be deleted.  However, we're not "ready" for that step.  
> So, IIS holds locks on some of the files during uninstall, and some files get 
> left behind.  I can put some RemoveFolder or RemoveFolderEx code in, but this 
> is just a Band-Aid.
> 
> Be careful, RemoveFolderEx is quite powerful (and useful when you REALLY need 
> it).
> 
> --
> John Merryweather Cooper
> Senior Software Engineer | Enterprise Service Applications | Continuing 
> Development
> Jack Henry & Associates, Inc.® | Lenexa, KS  66214 | Ext:  431050 
> |jocoo...@jackhenry.com
> 
> 
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Monday, October 6, 2014 4:13 PM
> To: WiX - users
> Subject: [WiX-users] Wix msi setup clear and remove remove installation 
> folder on uninstall
> 
> I have made an msi package and I need to remove installation folders and all 
> files (generated by the application during working) on uninstall.I have seen 
> usage of RemoveFolder and RemoveFolderEx but I need to know which is the best 
> way, which are the differences from RemoveFolder and RemoveFolderEx?I need to 
> save the location on the registry?Can you post a full sample of the best way 
> for doing this?  
> --
> Slashdot TV.  Videos for Nerds.  Stuff that Matters.
> http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> NOTICE: This electronic mail message and any files transmitted with it are 
> intended
> exclusively for the individual or entity to which it is addressed. The 
> message, 
> together with any attachment, may contain confidential and/or privileged 
> information.
> Any unauthorized review, use, printing, saving, copying, disclosure or 
> distribution 
> is strictly prohibited. If you have received this message in error, please 
> immediately advise the sender by reply email and delete all copies.
> 
> 
> --
> Slashdot TV.  Videos for Nerds.  Stuff that Matters.
> http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Wix msi setup clear and remove remove installation folder on uninstall

2014-10-06 Thread Marco Tognacci
I have made an msi package and I need to remove installation folders and all 
files (generated by the application during working) on uninstall.I have seen 
usage of RemoveFolder and RemoveFolderEx but I need to know which is the best 
way, which are the differences from RemoveFolder and RemoveFolderEx?I need to 
save the location on the registry?Can you post a full sample of the best way 
for doing this?
--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Burn Major Upgrade Uninstall the old msi packages but not install the new msi packages

2014-10-06 Thread Marco Tognacci
I have made a Burn setup package with the last official WiX release 3.8.I have 
some msi package inside the Burn chain, for example packA.msi version number 
1.0.0.0packB.msi version number 1.0.0.0
the burn package genrated isburn.exe version number 1.0.0.0
then I need to update one of the packages and regenerate the burn setup again
packA.msi version number 1.1.0.0packB.msi version number 1.0.0.0burn.exe 
version number 1.1.0.0

when I install the new package burn call the uninstall of all package but not 
install the new packages.Is there any bug in WiX 3.8 about upgrading Burn? or 
There is some problems in how I make the burn package for upgrading?
  
--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Adding a custom action to 3dparty msi package

2014-09-29 Thread Marco Tognacci
Can you explain with details how to use a transform to inject the custom action 
in the msi?

> From: jacob.hoo...@greenheck.com
> To: wix-users@lists.sourceforge.net
> Date: Mon, 29 Sep 2014 14:21:16 +
> Subject: Re: [WiX-users] Adding a custom action to 3dparty msi package
> 
> Could you not use a transform to inject the CA (and scheduling) into their 
> MSI? Assuming you are the one controlling the install/uninstall, that would 
> be the cleanest approach I can think of. 
> 
> -Original Message-
> From: Phill Hogland [mailto:phogl...@rimage.com] 
> Sent: Monday, September 29, 2014 8:21 AM
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Adding a custom action to 3dparty msi package
> 
> I would take the last approach.  The other suggestions are not viable so far 
> as I am aware.  I have a 3rd party msi for which I chain a pre3rdParty msi 
> and a post3rdparty msi for similar reasons, so it is certainly possible to do 
> your last suggestion, depending on your details. 
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Adding-a-custom-action-to-3dparty-msi-package-tp7597042p7597045.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> Slashdot TV.  Videos for Nerds.  Stuff that Matters.
> http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> Slashdot TV.  Videos for Nerds.  Stuff that Matters.
> http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Adding a custom action to 3dparty msi package

2014-09-28 Thread Marco Tognacci
I have a burn package wich install an msi of a third party vendor, I need to 
add a custom action when the installation of this msi start or end, but I can't 
modify it.Is there any way to add this custom action with burn?Or is there a 
way to make another msi package that play the custom action and wrap the 
original msi package?Or I need to make a new msi package containing only the 
custom action and add in burn after the 3d party package in the burn 
installation chain?
Thanks
--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Force unistall of msi package inside burn updating process

2014-09-27 Thread Marco Tognacci
I have a burn package that contains an msi package of a third party company 
that I can't modify.When I update my burn package, as there are some problem in 
updating this msi package from an old version, I need to force uninstall of the 
old msi package, delete all the folders and files,  and then install the new 
one as a new installation (without making the msi package updating itself).Ho 
can I make this?Is there any way to attach a custom action or call command line 
msiexec.exe /x {your-product-code-guid}Afer running the installation (or 
update) of the third party msi package?I need to verify if it's already 
installed and then in this case run the custom action or calling the command 
line to perform uninstall of the package and the proceed with a new 
installation of the package.
Thanks
--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Best way to run a custom actionat the end of burn UI

2014-09-24 Thread Marco Tognacci
I need to perform a custom action and run it at the end of installation 
process, but I need to run it even if I run the setup again on a system that it 
is already installed.
I need to run an exe that is external to the burn package that perform a sort 
of update of some files in the system, this exe must be added after the burn 
setup is built, and I need to perform it even on a system that is already 
installed the same version of the package, perhaps asking the user if to run it 
or not.
Which is the best way to perform this? Make a custom action? but how can I run 
it even when I run the setup the second time and it report that the package is 
already installed?
I could add some c# code to make this on the Burn custom ui and control it when 
the wpf interface is closed.  
--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] HeatDirectory optimization

2014-09-22 Thread Marco Tognacci
can you explain with more details how to make this with MSBuild?and how to 
record the timestamp, now I'm using TFS to store my files.Thanks


> From: jacob.hoo...@greenheck.com
> To: wix-users@lists.sourceforge.net
> Date: Mon, 22 Sep 2014 20:59:29 +
> Subject: Re: [WiX-users] HeatDirectory optimization
> 
> Use MSBuild, specifically the XSLTransform task.
> 
> To optimize it even more, you can store the timestamp of the file generated 
> with the timestamp used to check out from version control. In which case you 
> don't have to re-run the HeatDirectory task every time you run your build 
> (unless the timestamp changes or the file is removed).
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Monday, September 22, 2014 3:14 PM
> To: WiX - users
> Subject: [WiX-users] HeatDirectory optimization
> 
> In my setup project I use  in the msi project definition to 
> Harves a directory then I apply a transformation xslt to filter the result in 
> the wsx file.
> I made this with several different filter but using the main root directory 
> for all of them, in this case the harvesting of the main root is made many 
> times.
> To speedup the building process I'd like to make the harvesting of the root 
> directory only one time and them to the complete wsx file I want to apply 
> each filter to produce the final wsx file.
> Is this possible in some way using heat?
> The only solution that I have found is to use a program to apply the xslt 
> transformation, but in this way I have to use an external tool, I'd like to 
> have an integrated tool inside WiX
> Thanks. 
> --
> Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI 
> DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you 
> Audit-Ready for PCI DSS 3.0 Compliance? Download White paper Comply to PCI 
> DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer 
> http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
> Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
> Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
> Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
> http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] HeatDirectory optimization

2014-09-22 Thread Marco Tognacci
In my setup project I use  in the msi project definition to 
Harves a directory then I apply a transformation xslt to filter the result in 
the wsx file.
I made this with several different filter but using the main root directory for 
all of them, in this case the harvesting of the main root is made many times.
To speedup the building process I'd like to make the harvesting of the root 
directory only one time and them to the complete wsx file I want to apply each 
filter to produce the final wsx file.
Is this possible in some way using heat?
The only solution that I have found is to use a program to apply the xslt 
transformation, but in this way I have to use an external tool, I'd like to 
have an integrated tool inside WiX
Thanks.   
--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] I need to force unistall of a 3d party package apart of the version number number

2014-09-21 Thread Marco Tognacci
I have made a Burn wix setup that encapsulate a 3d party msi package.When I 
install my burn setup on a system that have just installed the 3dparty msi 
package I need to force unistall of this package and the reinstall it.The same 
thing when I upgrade my burn package I need to force the uninstall of the 
3dparty msi and the reinstall it.
I can't leave the unistall process of the 3dparty msi to the msi package itself 
because it has some problems, so which is the best way to force the uninstall 
of this package if the burn bootstrapper detect that it is already installed?
I need to use a custom action or I can make it easily from the Burn 
bootstrapper?
Thanks.   
--
Slashdot TV.  Video for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to create path using Burn

2014-08-04 Thread Marco Tognacci
I have a Burn setup exe package and I'd like to make patches to update only a 
few files using the same Burn interface, how can I make this?
Which is the right way for automate this process inside TFS build system?I have 
a build definition that create all the msi packages that are included in the 
Burn bundle and the make the exe burn  setup.In a such way I'd like to create 
patches for this package.
I have read that I can use Torch for making the transform and the using Pyro to 
make the patch, but I don't know hot to mix it with burn.And is there a way for 
using Torch and Pyro using project definition without using calling to command 
line Torch.exe and Pyro.exe?   
--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] MajorUpgrade of Burn not uninstall ???

2014-04-02 Thread Marco Tognacci
I have seen the Wix Toolset setup package. I have installed the latest 
offiacial release 0f 3.7 and then the 3.8When I Install the 3.8 it recognize 
that it's a major upgrade but in the log of the uninstallation of the 3.7 
package it mark the the planned package of votive.msi as state obsole, default 
request: None, ba requested: None and Execute:None
[0534:1A38][2014-04-03T00:35:02]i201: Planned package: votive.msi, state: 
Obsolete, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: No, dependency: Unregister
I expected that the ba requested was abstend and the execute:Uninstall In 
this case the old package seem not to be uninstalled, right?

I ask this as I have made a burn setup and I have the same report for the log, 
but If I made the upgrade of the packages the resultant installation folder 
doesn't have some com dll installed (they not have any particular registry 
registration, they are only considered as files harvested using heat to take 
the entire application folder) and so my application doesn't works right.But 
now if I uninstall manually the setup and then run again the last version of 
the setup it works all right.Which could be the problem i nthis major upgrade?  
 
--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Take version number from file not installed in the package

2014-03-27 Thread Marco Tognacci
I need to get the version number for an msi from an exe file that isn't 
deployed as item from the msi?Is there a way to get the file versione from a 
file using his folder path?
in the same way I need to set the version of an exe setup package added in a 
Burn setup to make it upgrading correctly.I think I can add the version number 
using a "Provides element" from "DependencyExtension" but I don't know how to 
set it automatically to the version number of the exe file itself.  

--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Burn setup upgrading msi package is obsolete but not uninstalled

2014-03-23 Thread Marco Tognacci
I have a Bunr setup with an msi package.I have done 2 different packages, and I 
have installed the second one with a higher version number.In the logs file I 
can see that it report the msi package as installed and obsolete, it start the 
uninstall process of the installed burn package but it doesn't uninstall the 
msi package even if it is marked as obsolete and the planned action from the ba 
is absent, but the action is none, and not unistall.I want it to be 
uninstalled, what I have to do? 
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Manage Upgrades of ExePackage in Burn

2014-03-02 Thread Marco Tognacci
I have an ExePackage added to the seup made with Burn.To make upgrading of the 
Burn package working with the ExePackage I think I need to add the right 
version for the package using Provides Element (in Dependency Extension).How 
can I set the file versione to the versione of the exe package automatically, 
without write it in the wix project.I think using a way similar to 
!(bind.FileVersion.MyFileId) but this works only if MyFileId is the Id of a 
component, but in this case it must be the Id of the ExePackage, but this is 
not possible, right?How can I set this FileVersion to the Versione of the 
ExePackage file? 
--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Create Language Packs with Burn

2014-02-08 Thread Marco Tognacci
I made a Burn setup package with the installation of languages, but I need to 
provide a separate setup for adding new language packs not provided with the 
main application setup, wich is the best way for doing this?Package each 
language in a separate msi? and then adding them to the main application setup 
and then create another Burn setup for only the language packs? 
   
--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to modify MSI from the custom bootstrapper

2013-10-12 Thread Marco Tognacci
In your custom BA you can connect to event fired when the installer is 
executing the detect, plan and apply operations, this events are callled for 
package and for the single feature of an msi, if you return the code you want 
you can change the plan action.
"Absent" - for removing
"Force Absent" - for force removing
"Present" - for installing
"None" - to make the default msi
"Repair" - to repair

you can see as an example the setup shipped with the source code of wix.



> Date: Fri, 11 Oct 2013 11:59:54 -0700
> From: zarko.kosto...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] How to modify MSI from the custom bootstrapper
> 
> Ok, how? Both launch actions, install and modify, are ignoring my
> modifications. 
> Installation, as it currently is, is set to do silent installation and
> modification by reading some custom properties and with that information to
> internally set feature install states to local or absent. 
> In case of first time installation it performs well, but in case of
> modification, internal MSI, behaves as it was not started at all regardless
> of launch conditions.
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-modify-MSI-from-the-custom-bootstrapper-tp7585752p7589676.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> --
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Is it possible with Wix?

2013-10-10 Thread Marco Tognacci
You can choose to not embed the the installation package of the drivers and 
make the setup taking them from external folder, but you have to know them ad 
compile time and add them in Wix Burn project.
Otherwise if you want Burn to run executable from extern folders you could do 
this using custom actions, but it is not a best practice because the installer 
have no control on this external packages and in this way one could add a virus 
in this folder and using your setup running this virus file with elevated 
privileges on the target machine.


> Date: Thu, 10 Oct 2013 13:36:50 +0530
> From: wixak...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Is it possible with Wix?
> 
> Setup.exe  will parse the external files and folders and install the driver
> using them
> 
> 
> On Wed, Oct 9, 2013 at 3:39 PM, Blair Murri  wrote:
> 
> > Pretty much any installation is possible with WiX. What does setup.exe do?
> > Do you have its sources?
> >
> > > Date: Wed, 9 Oct 2013 13:47:24 +0530
> > > From: wixak...@gmail.com
> > > To: wix-users@lists.sourceforge.net
> > > Subject: Re: [WiX-users] Is it possible with Wix?
> > >
> > > I want to replace the "Setup.exe" with Wix "Setup.msi" with out changing
> > > folder structure and install using "Setup.msi" .
> > >
> > >
> > > On Wed, Oct 9, 2013 at 11:42 AM, ak m  wrote:
> > >
> > > > Please find the attached Screenshot 'Image.JPG'.
> > > >
> > > > I want to replace the "Setup.exe" with Wix "Setup.msi" with out
> > changing
> > > > folder structure.
> > > >
> > > > Is it possible?
> > > >
> > > > Anyone please help me?
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > --
> > > October Webinars: Code for Performance
> > > Free Intel webinars can help you accelerate application performance.
> > > Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
> > from
> > > the latest Intel processors and coprocessors. See abstracts and register
> > >
> > >
> > http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
> > > ___
> > > WiX-users mailing list
> > > WiX-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> >
> > --
> > October Webinars: Code for Performance
> > Free Intel webinars can help you accelerate application performance.
> > Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
> > from
> > the latest Intel processors and coprocessors. See abstracts and register >
> > http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> --
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Disable verbose log for MSIPackage in Burn

2013-10-05 Thread Marco Tognacci
My problem is that my Burn setup is very very slow, compared with the old 
Installshield setup.
For this reason I have reported very bad feedback by users.

As the verbose logging for the msi is very big more than 100 MB, I have 
supposed that one of the problem was the writing of the verbose log.

I use Heat to harvest the files in my build folder, so another problem could be 
that the order of the files is not optimized and they will be installed not for 
whole folder but changing the folder for each file as in each feature of my msi 
setup there are files from different folders.
Is there any way to optimize the installation sequence of the files as to 
install all the files from a single folder at one time?

Or is there any other way to speed up the setup? Not marking the files as key 
frame perhaps? but I don't know how to make this using Heat
  
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Optimize compilation in Visual Studio Solution

2013-10-04 Thread Marco Tognacci
I have a wix solution in VisualStudio and it takes a lot to build more that 30 
minutes, I have a msi and a Burn project, but if I make some changes only in 
the Burn Project it rebuild even the msi package?
Can you make some compilation optimization to rebuild only the necessary?
  
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Disable verbose log for MSIPackage in Burn

2013-10-04 Thread Marco Tognacci
I need to disable the verbose logging for the MSI Package in my Burn setup, how 
can I make this?
  
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] MSIFASTINSTALL ?!?!?!

2013-09-20 Thread Marco Tognacci
I have seen that some installers like Visual Studio set this property 
MSIFASTINSTALL=7 but I haven't found the meaning of the parameter 7, in the 
microsoft documentatio there is only 4 values 1,2,3,4

http://msdn.microsoft.com/en-us/library/windows/desktop/dd408005%28v=vs.85%29.aspx

adding this property to the MSI will speedup the setup?


My burn setup is too slowly, even using the singles msi package they seem to be 
faster than when I run them inside Burn exe package. I need to speed up it, is 
there any way for doing this?
  
--
LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99!
1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint
2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack includes
Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13. 
http://pubads.g.doubleclick.net/gampad/clk?id=58041151&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] disable verbose logging for MSIPackage in Burn

2013-09-20 Thread Marco Tognacci
All the MsiPackage that I have added in my Burn setup have the verbose logging 
enabled, for one of them it is 100 mb of log file and IO think this is one of 
the causes of the slow time of the install.
How can I disable the Logging for a single MsiPackage? I haven't found any 
property in the MsiPackage, I have read that there is a MsiLogging property to 
set for the MSI but I have tried to set it as MSIProperty but nothing works.
  
--
LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99!
1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint
2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack includes
Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13. 
http://pubads.g.doubleclick.net/gampad/clk?id=58041151&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Disable logging for msi package included in Burn setup

2013-09-12 Thread Marco Tognacci
I have a Burn Setup with some msi package, the log for each package isnear 
100MB so to speed up the installation I'd like to disable the log for the 
single msi package, but I'd like to preserve the logging for the Burn package.
How to make this? I haven't found an option to enable the loggin in the 
MSIPackage element.
  
--
How ServiceNow helps IT people transform IT departments:
1. Consolidate legacy IT systems to a single system of record for IT
2. Standardize and globalize service processes across IT
3. Implement zero-touch automation to replace manual, redundant tasks
http://pubads.g.doubleclick.net/gampad/clk?id=5127&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] HeatFile fail for a dll that need to be resigned

2013-09-11 Thread Marco Tognacci
I have tested using sn.exe -vf and the dll is not signed, but I have built it 
checking the option for signing it and not check the option for delay sign.
Using the -vr option the Heat.exe sould work? 
the problem is that it can't load the dll for the harvesting process.
  
--
How ServiceNow helps IT people transform IT departments:
1. Consolidate legacy IT systems to a single system of record for IT
2. Standardize and globalize service processes across IT
3. Implement zero-touch automation to replace manual, redundant tasks
http://pubads.g.doubleclick.net/gampad/clk?id=5127&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Slow Installs

2013-09-11 Thread Marco Tognacci
I have tested a very slow installation using wix compared to an msi made by 
InstallShield.
The ordering the items in the installation table using the directory is perhaps 
a good ideai, but what about using Heat?
I use Heat for harvesting directories with many files, anf it doesn't add a 
name using the path where the file is located, is there any future develop for 
doing this?
  
--
How ServiceNow helps IT people transform IT departments:
1. Consolidate legacy IT systems to a single system of record for IT
2. Standardize and globalize service processes across IT
3. Implement zero-touch automation to replace manual, redundant tasks
http://pubads.g.doubleclick.net/gampad/clk?id=5127&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] HeatFile fail to harvest a dll for register it as shell extension

2013-09-03 Thread Marco Tognacci
I have a dll that I need to use a shell extension, I have signed the dll in the 
project options, but I I run the setup project on a clear machine where the dll 
is not build but only copied, Heatfile fail with this message

System.IO.FileLoadException was unhandled

Message: Could not load file or assembly 'heat, Version=4.0.0.0,

Culture=neutral, PublicKeyToken=c9acf360d0e036e3' or one of its

dependencies. Strong name validation failed. (Exception from HRESULT:

0x8013141A)

How to fix it?
  
--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] HeatFile fail for a dll that need to be resigned

2013-08-29 Thread Marco Tognacci
I have a dll that is signed when it's compiled, and I need to harvest it using 
HeatFile for getting the registry keys to register it for using as a shell 
extension.
The problem is that I have a stand alone solution with the setup project, that 
build the setup using the compiled file of my application included the dll that 
I have to use for shell extension, and I'm using virtual machine as server 
build, but in this machine I don't compile the dll so in this machine the dll 
isn't signed.
IIf I run the HeatFile with this dll, I receive a warning 5151 and the wsx 
output file hasn't the registry keys and the build fail.
I have tried to resign the dll calling the sn.exe (Strong Name Tool) with 
option -Vr, after this the HeatFile seem to work fine.

Is there any way for integrating in the wix project the resign of the dll, it 
could be useful to have an option in the HeatFile item for resign the dll, or 
perhaps calling the sn.exe in a build step or with custom action? I need to 
retrieve the correct path because in this machine I install the Windows 7 SDK 
tools while in the local machine I have Visual Studio Installed and then the 
sn.exe location could be different.

I'm using the last stable wix 3.7, perhaps something is there in the latest 3.8 
or 4.0?


  
--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [WiX-devs] How can I Register a Component in Both 32 and 64 Bit Using a Single MSI

2013-08-10 Thread Marco Tognacci
For doing this I have used Heat for harvesting the registration keys, but for 
registering for 32 and 64 bit OS the same dll installed in the 32 bit Program 
FIles folder I had created 2 msi package one compiled in 32bit mode with the 
installation of the main program and the registration for the 32 bit OS and the 
a 64 bit msi with the only registration of the dll for the 64 bit OS passing to 
it the path of the installed 32 bit dll to register.

> From: os...@live.com
> To: wix-users@lists.sourceforge.net
> Date: Fri, 9 Aug 2013 11:35:21 -0700
> Subject: Re: [WiX-users] [WiX-devs] How can I Register a Component in Both 32 
> and 64 Bit Using a Single MSI
> 
> Duplicate the registration code in parallel 32-bit component(s).
>  
> > From: andrew.kari...@credit-suisse.com
> > To: wix-users@lists.sourceforge.net
> > Date: Fri, 9 Aug 2013 14:21:21 +
> > Subject: Re: [WiX-users] [WiX-devs] How can I Register a Component in Both 
> > 32 and 64 Bit Using a Single MSI
> > 
> > Hi Wix Gurus,
> > 
> > I have a .Net Assembly that is exposed to COM, and is compiled as ANYCPU. I 
> > would like to register it in both 32 and 64 bit registry views so that it 
> > can be consumed by both 32 and 64 bit applications.
> > 
> > Is there a way I can create one single MSI using Wix to install the 
> > binaries in one directory, for example C:\Program 
> > Files\MySuperComAssembly\, and then register in 64 bit and 32 bit views?
> > 
> > Thank you all for your help.
> > Andrew
> > 
> > 
> > ===
> >  
> > Please access the attached hyperlink for an important electronic 
> > communications disclaimer: 
> > http://www.credit-suisse.com/legal/en/disclaimer_email_ib.html 
> > ===
> >  
> > 
> > 
> > --
> > Get 100% visibility into Java/.NET code with AppDynamics Lite!
> > It's a free troubleshooting tool designed for production.
> > Get down to code-level detail for bottlenecks, with <2% overhead. 
> > Download for free and get started troubleshooting in minutes. 
> > http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> Get 100% visibility into Java/.NET code with AppDynamics Lite!
> It's a free troubleshooting tool designed for production.
> Get down to code-level detail for bottlenecks, with <2% overhead. 
> Download for free and get started troubleshooting in minutes. 
> http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Diffence Betwen WixEdit & Heat.exe

2013-08-06 Thread Marco Tognacci
Heat.exe is a component of WiX it's used for harvesting files, directories, 
projects...WixEdit is simply an editor for the WiX projects.

> From: bwhee...@dshs.wa.gov
> To: wix-users@lists.sourceforge.net
> Date: Tue, 6 Aug 2013 14:55:54 +
> Subject: Re: [WiX-users] Diffence Betwen WixEdit & Heat.exe
> 
> I'm not familiar with WixEdit but I use Heat frequently and find it to be 
> very solid.  If you want the same output from both tools  I'd go with Heat.
> 
> -Original Message-
> From: Chaitanya Sanapala [PC-BLR-DEV] [mailto:chaita...@pointcross.com] 
> Sent: Tuesday, August 06, 2013 12:18 AM
> To: WiX-users@lists.sourceforge.net
> Subject: [WiX-users] Diffence Betwen WixEdit & Heat.exe
> 
> Hi,
> I want to know the difference between 'WixEdit & Heat.exe.
> When i use Wixedit for XML tags it is taking a lot of time.(1 hr) But the 
> same structure when i use Though 'Heat.exe' it is generating very less time 
> within (20secs) its creating.
> What is the differnce in both.
> Or is there any Bugs in heat or Wixedit...
> Which we have to prefer to create a XMl tags.
> 
> --
> Get your SQL database under version control now!
> Version control is standard for application code, but databases havent caught 
> up. So what steps can you take to put your SQL databases under version 
> control? Why should you start doing it? Read more to find out.
> http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> --
> Get your SQL database under version control now!
> Version control is standard for application code, but databases havent 
> caught up. So what steps can you take to put your SQL databases under 
> version control? Why should you start doing it? Read more to find out.
> http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] HeatFile not works if build in Release

2013-07-27 Thread Marco Tognacci
I need to register this dll for registering a shell extension to provide custom 
preview for my custom file extension.My setup project is contained in the my 
application project folder, but I compile it with a stand alone solution, where 
I'm refer to the building folder of my Application, Release or Debug depend on 
the building option of the setup.The dll could be register in the system, as it 
is used for a shell extension and if I build it locally I can't know if it's 
registered.I should unregister it before calling heat.exe? If it's registered 
in the system Heat could refer to this previous registered dll instead of that 
there is on the location that is taken as source for the setup?

> From: jacob.hoo...@greenheck.com
> To: wix-users@lists.sourceforge.net
> Date: Sat, 27 Jul 2013 17:26:06 +
> Subject: Re: [WiX-users] HeatFile not works if build in Release
> 
> Is your DLL project output set to register for COM interop? Are you building 
> your install as part of the solution containing the source projects? Have you 
> ensured your assembly is not registered prior to building the installer 
> project?
> 
> Have you tried to manually run heat against the release folder to see if it 
> works out of process? (When building, I believe the heat task will emit the 
> command line params to the MSBuild output window.)
> 
> >From what I remember, Heat is using registry redirection to capture the 
> >changes, so the heat task won't actually register the assembly locally as it 
> >kills the redirected keys after converting them to Wix output.
> 
> Finally, do you intend on sharing this assembly among multiple applications? 
> If not, you might want to look into registration free COM and ignore the 
> registry all together.
> 
> -Original Message-
> From: Marco Tognacci [mailto:mark...@live.it] 
> Sent: Saturday, July 27, 2013 7:46 AM
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] HeatFile not works if build in Release
> 
> I have build it first on Debug mode and then on Release. Could be that the 
> first time Hear register the dll in the Debug folder and then the second time 
> instead of register the dll in the Release folder it it return the path of 
> the dll in the debug folder because in the systerm is register the on in the 
> debug folder?In this case is there a way for registering each time the new 
> dll using HeatFile or I have to add some command line for deregistering the 
> dll myself?
> 
> > From: mark...@live.it
> > To: wix-users@lists.sourceforge.net
> > Date: Fri, 26 Jul 2013 23:49:31 +0200
> > Subject: Re: [WiX-users] HeatFile not works if build in Release
> > 
> > I have checked it, registering it using a custom exe and using c# 
> > RegistrationServices.RegisterAssembly, the line added to the registry are 
> > equal to that harvested by Heat.I can't make it hard coded as I would 
> > change the version and even if my dll will expose other interfaces.Using 
> > Heat I need to make 2 msi project for registering under x86 and x64 depends 
> > on OS of the machine where to install, so I need to change the path of the 
> > dll in the x64 project as it has to link the same x86 dll.
> > 
> > 
> > > Date: Fri, 26 Jul 2013 14:21:59 -0700
> > > From: os...@live.com
> > > To: wix-users@lists.sourceforge.net
> > > Subject: Re: [WiX-users] HeatFile not works if build in Release
> > > 
> > > I'm not recommending running an exe during installation. Instead I'm 
> > > suggesting taking that DLL you are passing to the heat tool and 
> > > registering it into a VM to double check what it is writing.
> > > 
> > > 
> > > Marco Tognacci  wrote:
> > > 
> > > I prefer not to run exe files for registring dll during installation, I'd 
> > > like to add only the registry keys that I need, and make it with the 
> > > msi.As I have made in debug works but I can't figure out why in Release 
> > > don't work.Perhaps a bug in the Heat.exe ???
> > > 
> > > > Date: Fri, 26 Jul 2013 14:03:12 -0700
> > > > From: os...@live.com
> > > > To: wix-users@lists.sourceforge.net
> > > > Subject: Re: [WiX-users] HeatFile not works if build in Release
> > > >
> > > > I also suggest you do a regsvr32 on your release DLL and ensure that 
> > > > the codebase value in the registry is correct.
> > > >
> > > > Also check your build spew to double check the command line passed to 
> > > > the heat utility.
> > > >
> > > >
> >

Re: [WiX-users] HeatFile not works if build in Release

2013-07-27 Thread Marco Tognacci
I have build it first on Debug mode and then on Release. Could be that the 
first time Hear register the dll in the Debug folder and then the second time 
instead of register the dll in the Release folder it it return the path of the 
dll in the debug folder because in the systerm is register the on in the debug 
folder?In this case is there a way for registering each time the new dll using 
HeatFile or I have to add some command line for deregistering the dll myself?

> From: mark...@live.it
> To: wix-users@lists.sourceforge.net
> Date: Fri, 26 Jul 2013 23:49:31 +0200
> Subject: Re: [WiX-users] HeatFile not works if build in Release
> 
> I have checked it, registering it using a custom exe and using c# 
> RegistrationServices.RegisterAssembly, the line added to the registry are 
> equal to that harvested by Heat.I can't make it hard coded as I would change 
> the version and even if my dll will expose other interfaces.Using Heat I need 
> to make 2 msi project for registering under x86 and x64 depends on OS of the 
> machine where to install, so I need to change the path of the dll in the x64 
> project as it has to link the same x86 dll.
> 
> 
> > Date: Fri, 26 Jul 2013 14:21:59 -0700
> > From: os...@live.com
> > To: wix-users@lists.sourceforge.net
> > Subject: Re: [WiX-users] HeatFile not works if build in Release
> > 
> > I'm not recommending running an exe during installation. Instead I'm 
> > suggesting taking that DLL you are passing to the heat tool and registering 
> > it into a VM to double check what it is writing.
> > 
> > 
> > Marco Tognacci  wrote:
> > 
> > I prefer not to run exe files for registring dll during installation, I'd 
> > like to add only the registry keys that I need, and make it with the msi.As 
> > I have made in debug works but I can't figure out why in Release don't 
> > work.Perhaps a bug in the Heat.exe ???
> > 
> > > Date: Fri, 26 Jul 2013 14:03:12 -0700
> > > From: os...@live.com
> > > To: wix-users@lists.sourceforge.net
> > > Subject: Re: [WiX-users] HeatFile not works if build in Release
> > >
> > > I also suggest you do a regsvr32 on your release DLL and ensure that the 
> > > codebase value in the registry is correct.
> > >
> > > Also check your build spew to double check the command line passed to the 
> > > heat utility.
> > >
> > >
> > > John Cooper  wrote:
> > >
> > > I would expect DirectoryRefId to match the Directory@Id you're 
> > > substituting.  However, this should cause it to break in both 
> > > Configurations, so I suspect that's not it.
> > >
> > > Is this Release configuration build breaking on a build server, both 
> > > locally and on a build server, or just locally?  I note you're 
> > > redirecting the output from the default, and that can cause serious 
> > > breakage and performance problems on a TFS build server.
> > >
> > > --
> > > John Merryweather Cooper
> > > Build & 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: Marco Tognacci [mailto:mark...@live.it]
> > > Sent: Friday, July 26, 2013 2:49 PM
> > > To: General discussion for Windows Installer XML toolset.
> > > Subject: Re: [WiX-users] HeatFile not works if build in Release
> > >
> > > I have added a node in the setup project in the Before build sections 
> > > 
> > >> >PreprocessorVariable="var.HarvestPath"
> > >OutputFile="HeatGeneratedFile.wxs"
> > >ComponentGroupName="HeatGenerated"
> > >DirectoryRefId="INSTALLFOLDER"
> > >AutogenerateGuids="true"
> > >ToolPath="$(WixToolPath)"
> > >SuppressFragments="true"
> > >SuppressRegistry="false" SuppressCom="false" 
> > > SuppressUniqueIds="true"
> > >SuppressRootDirectory="true" 
> > > Transforms="MyTransform.xslt"/>  in MyTransform.xslt I have 
> > > added the code to change the string "file:///[#myFile.dll]" with 
> > > "[INSTALLATIONFOLDER]myFile.dll"It all w

Re: [WiX-users] HeatFile not works if build in Release

2013-07-26 Thread Marco Tognacci
I have checked it, registering it using a custom exe and using c# 
RegistrationServices.RegisterAssembly, the line added to the registry are equal 
to that harvested by Heat.I can't make it hard coded as I would change the 
version and even if my dll will expose other interfaces.Using Heat I need to 
make 2 msi project for registering under x86 and x64 depends on OS of the 
machine where to install, so I need to change the path of the dll in the x64 
project as it has to link the same x86 dll.


> Date: Fri, 26 Jul 2013 14:21:59 -0700
> From: os...@live.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] HeatFile not works if build in Release
> 
> I'm not recommending running an exe during installation. Instead I'm 
> suggesting taking that DLL you are passing to the heat tool and registering 
> it into a VM to double check what it is writing.
> 
> 
> Marco Tognacci  wrote:
> 
> I prefer not to run exe files for registring dll during installation, I'd 
> like to add only the registry keys that I need, and make it with the msi.As I 
> have made in debug works but I can't figure out why in Release don't 
> work.Perhaps a bug in the Heat.exe ???
> 
> > Date: Fri, 26 Jul 2013 14:03:12 -0700
> > From: os...@live.com
> > To: wix-users@lists.sourceforge.net
> > Subject: Re: [WiX-users] HeatFile not works if build in Release
> >
> > I also suggest you do a regsvr32 on your release DLL and ensure that the 
> > codebase value in the registry is correct.
> >
> > Also check your build spew to double check the command line passed to the 
> > heat utility.
> >
> >
> > John Cooper  wrote:
> >
> > I would expect DirectoryRefId to match the Directory@Id you're 
> > substituting.  However, this should cause it to break in both 
> > Configurations, so I suspect that's not it.
> >
> > Is this Release configuration build breaking on a build server, both 
> > locally and on a build server, or just locally?  I note you're redirecting 
> > the output from the default, and that can cause serious breakage and 
> > performance problems on a TFS build server.
> >
> > --
> > John Merryweather Cooper
> > Build & 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: Marco Tognacci [mailto:mark...@live.it]
> > Sent: Friday, July 26, 2013 2:49 PM
> > To: General discussion for Windows Installer XML toolset.
> > Subject: Re: [WiX-users] HeatFile not works if build in Release
> >
> > I have added a node in the setup project in the Before build sections 
> > 
> >>PreprocessorVariable="var.HarvestPath"
> >OutputFile="HeatGeneratedFile.wxs"
> >ComponentGroupName="HeatGenerated"
> >DirectoryRefId="INSTALLFOLDER"
> >AutogenerateGuids="true"
> >ToolPath="$(WixToolPath)"
> >SuppressFragments="true"
> >SuppressRegistry="false" SuppressCom="false" 
> > SuppressUniqueIds="true"
> >SuppressRootDirectory="true" Transforms="MyTransform.xslt"/> 
> >  in MyTransform.xslt I have added the code to change the string 
> > "file:///[#myFile.dll]" with "[INSTALLATIONFOLDER]myFile.dll"It all works 
> > fine if I compile in Debug mode, but in Release I can't make it works as I 
> > have the specific full path that depends on the location of the file and 
> > it's not relative.
> >
> >
> > > Date: Fri, 26 Jul 2013 11:49:10 -0700
> > > From: os...@live.com
> > > To: wix-users@lists.sourceforge.net
> > > Subject: Re: [WiX-users] HeatFile not works if build in Release
> > >
> > > How are you calling HeatFile?
> > >
> > >
> > > Marco Tognacci  wrote:
> > >
> > > I have used HeatFile in my setup project to harvest a dll for register it 
> > > for COMIf I build my project in Debug mode I have this:
> > > > > Directory="dir0F6F75DF46D1BACE2233EC573E6D4AA9" Guid="PUT-GUID-HERE">
> > >  > > Source="$(var.SourcePath)\myFile.dll" />
> > >
> > >  > > Key="CLSID\{0A89A860-D7B1-11CE-8350-4445535

  1   2   >