Re: [WiX-users] VS2013 Intellisense is not working for Wix ComPlusExtension

2014-12-02 Thread ssmsam
Hi, I have copied the complus.xsd into this location C:\Program Files (x86)\Microsoft Visual Studio 12.0\Xml\Schemas, now is working fine. However the WiX Toolset 3.9 seems its not installing this schema to the required location. Regards, Sampat -- View this message in context:

[WiX-users] How to find out the installlocation from WiX Bootstrapper after installation?

2014-12-02 Thread patrickpirzer
Hello, I have made a Bootstrapper-project in which i have defined an overridable variable for the installocation of my application. In the MsiPackage i have a hierarchy of subfolders under that installlocation. Here an example for better understanding: Fragment Id=MyFragment Directory

[WiX-users] Issue with deploying MSI through SCCM and GPO

2014-12-02 Thread Daniel Norman
Hi, I need help with troubleshooting something I suspect might be either a bug in WiX, or MSIExec. I've opened a ticket with Microsoft and they've already begun the blame-game (internally though) so I would be forever grateful for someone helping me with this. Initially, I opened up a

Re: [WiX-users] 3 digit bundle version number

2014-12-02 Thread Jan Suchotzki
Agreed and understood. Thanks for the detailed introduction! Everything is in VersionControl (TFS) and can be prefectly build from within Visual Studio by different developers on different systems. My problem is that Team Build (in its default build process) uses a different binaries folder

Re: [WiX-users] How to prevent upgrade and downgrade if system depends from particular installed product version

2014-12-02 Thread Valery Portnyagin
On 12/01/2014 10:09 AM, Valery Portnyagin wrote: Hello all, My need is to lockdown installer from upgrade or downgrade because already installed product B depends from particular version of product A. I.e. if a new version (doesn't matter upgrade or downgrade) of product A is installed the

[WiX-users] How to install SqlLocalDb.msi in Bootstrapper?

2014-12-02 Thread patrickpirzer
Hello, I have made a Bootstrapper-project with WiX 3.8. As part of the prerequisites SQL Server LocalDb shall be Installed. At first i tried to install it with SQL Server Express by adding it to the features like that: ExePackage Id=SqlServerExpressX86

Re: [WiX-users] How to install SqlLocalDb.msi in Bootstrapper?

2014-12-02 Thread Jože Jenkole
Hi. I used !-- Sql server Installation -- PackageGroup Id=SqlLocalDB2012Installation MsiPackage SourceFile=.\Prerequisites\SqlLocalDB2012.MSI Compressed=yes EnableFeatureSelection=yes Vital=yes InstallCondition=NOT(SQLSERVERDB2012_EXIST) MsiProperty

Re: [WiX-users] Patch sequencing problem - Small update + a supseding hotfix

2014-12-02 Thread Tunney, Stephen
Superseding really *should* mean that the update you are providing is meant to include the fixes from all previous fixes. If the result is a file gets rolled back as part of a hotfix then so be it. Stephen Tunney Nuance Communications, Inc. Solutions Architect, Imaging Division Waterloo,

Re: [WiX-users] VS2013 Intellisense is not working for Wix ComPlusExtension

2014-12-02 Thread Rob Mensching
Bug. I *think* this was fixed recently by Sean. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: ssmsam [mailto:ssmcs...@gmail.com] Sent: Tuesday, December 2, 2014 2:58 AM

Re: [WiX-users] How to prevent upgrade and downgrade if system depends from particular installed product version

2014-12-02 Thread Rob Mensching
Occam's Razor: busy _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Valery Portnyagin [mailto:valery.portnya...@oracle.com] Sent: Tuesday, December 2, 2014 5:54 AM To:

Re: [WiX-users] How to install SqlLocalDb.msi in Bootstrapper?

2014-12-02 Thread patrickpirzer
Thanks a lot! That works. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-install-SqlLocalDb-msi-in-Bootstrapper-tp7598322p7598327.html Sent from the wix-users mailing list archive at Nabble.com.

[WiX-users] Iis Schema Usage

2014-12-02 Thread Marc Beaudry
Hello All I apologize for the long post, putting as many details as possible to make my question more understandable :-) I have been trying to figure out how to use this without any real success, maybe I am trying to use this incorrectly. Here is what I have figure out so far: I have an

Re: [WiX-users] VS2013 Intellisense is not working for WixComPlusExtension

2014-12-02 Thread ssmsam
Okay. Thanks Rob. All the WiX Extension schemas exists except this. I observed that intellisense shows the attributes as soon as i type initial letters. It displays a tooltip with the possible values and what is the use of those attributes. But for some of the attributes it wount display the

[WiX-users] Install certificate in users store

2014-12-02 Thread Martin Formanko
Hi, is it possible with Wix toolset to install certificate in users store? I need that my self-signed certificate is considered to be valid for all browsers in operating system. I use WiX for making installation package for my Java app. Thanks. Martin

[WiX-users] Unhandled exception when launching MBA

2014-12-02 Thread Tunney, Stephen
Hey everyone, Trying to create an MBA based on .NET 4.5. Everything compiled correctly but when I launch the exe I get an unhandled exception: An unhandled Microsoft NET Framework exception occurred in ExpressMBA.exe [4400]. When I attach the VS 2013 debugger the breakpoint is sitting at the

Re: [WiX-users] How to prevent upgrade and downgrade if system depends from particular installed product version

2014-12-02 Thread Phil Wilson
If you're saying that two MSI products are incompatible and you want to make sure that a product cannot be installed if another one is already installed then some choices are: You use Upgrade and UpgradeVersion elements with OnlyDetect=yes that target the specific incompatible installed product.

Re: [WiX-users] Unhandled exception when launching MBA

2014-12-02 Thread Phill Hogland
I'm not sure if this comment will be much help, but when I started working on an mba I made the mistake of trying to interact with Engine Variables early in my app startup, before DetectBegin handler was fired, which caused threads to close and then an exception later. I add

Re: [WiX-users] Unhandled exception when launching MBA

2014-12-02 Thread Tunney, Stephen
Bingo! That did it :) Thank you for the heads up Phill!!! -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: December-02-14 2:15 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Unhandled exception when launching MBA I'm not sure if this comment

Re: [WiX-users] Install certificate in users store

2014-12-02 Thread Phill Hogland
I have not used this but I recalled seeing it in the docs http://wixtoolset.org/documentation/manual/v3/xsd/iis/certificate.html -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Install-certificate-in-users-store-tp7598330p7598335.html Sent from

[WiX-users] Bootstrapper and buttons...

2014-12-02 Thread Steve-Ogilvie
I have modified the theme for the boostrappers I am using but I noticed on the Welcome screen hitting the enter key does not advance to the next screen is this a bug in 3.8 or as designed? Steve -- View this message in context:

Re: [WiX-users] Install certificate in users store

2014-12-02 Thread Mejmoo
Yes I did found this too, but does it have something in common with IIS as it its IIS Extension? Hopefully not. On Tue, Dec 2, 2014 at 10:33 PM, Phill Hogland phogl...@rimage.com wrote: I have not used this but I recalled seeing it in the docs

Re: [WiX-users] Install certificate in users store

2014-12-02 Thread Keith.Douglas
You can (or at least for some things) use the IISExtension merely to install certificates - I've done that. This was my proof of concept - it should be cleaned up: Wix xmlns=http://schemas.microsoft.com/wix/2006/wi; xmlns:iis=http://schemas.microsoft.com/wix/IIsExtension; Product Id=*

[WiX-users] Embedded Transforms for L10n and how to display them.

2014-12-02 Thread gapearce
When I am done building my installer, (which includes a bunch of localization stuff (which are .mst files embedded into the .msi file)) I'd like to know what the generated ProductCode's are for each .mst file created in the build step. These files get merged into one .msi file, but I cant see

Re: [WiX-users] Patch sequencing problem - Small update + a supseding hotfix

2014-12-02 Thread kirannhegde
Superseding really *should* mean that the update you are providing is meant to include the fixes from all previous fixes. If the result is a file gets rolled back as part of a hotfix then so be it. scubasteve2 wrote Superseding really *should* mean that the update you are providing is meant to