Re: [WiX-users] using WiX with team foundation service

2013-02-28 Thread Neil Sleightholm
We use WiX with TFS but installed WiX on the build servers. Neil > > > If there is a NuGet package for WiX, that's news to me. The one time I >played with WiX on the TFS Hosted Build Agent I had to check all the WiX >binaries into source control and tweak the a few things in the targets >file

Re: [WiX-users] General disccussion

2013-02-28 Thread Yawar Khan
Better read this article for Burn custom UI http://neilsleightholm.blogspot.com/2012/10/wix-bootstrapper-application.html -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/General-disccussion-tp7583983p7584027.html Sent from the wix-users mailing

Re: [WiX-users] Copy File Setting source and destination property value setting

2013-02-28 Thread chennam
Hi Pal, I am bit confused, Can you show how it can be configured for below Directory structure. -- View this message in context: http://window

Re: [WiX-users] Bundle: Way to do no action in case of Repair for an ExePackage

2013-02-28 Thread Bob Arnson
On 28-Feb-13 09:08, Tobias S wrote: > Assume I have a bundle consisting of 1 MSI + 1 EXE and Exe doesn't support > repair. Is there a way to configure the exe that burn does no repair action > for the exe but for the MSI? like e.g. Just omit @RepairCommand -- if you don't tell it how to repair a p

Re: [WiX-users] Bundle: Way to do no action in case of Repair for an ExePackage

2013-02-28 Thread jhennessey
Just don't set the ExePackage/@RepairCommand attribute. That should disable repair for the exe. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bundle-Way-to-do-no-action-in-case-of-Repair-for-an-ExePackage-tp7584034p7584035.html Sent from the wix-

Re: [WiX-users] Rename File based on ArgumentpassedtoMSI Installation

2013-02-28 Thread chennam
Hi Peter, I was able to do copy file, see below statements. But I don't want to do hard coding of source or destination. How that can be achieved through custom actions or setting property? I tried with custom action and was not successful .Can you provide those steps for below example ;which i ne

Re: [WiX-users] sql ce deployment

2013-02-28 Thread Steven Ogilvie
Classification: Public Hi Sean, We deploy Microsoft SQL Server Compact 3.5 SP2 with our product. I am deploying it within burn and yes there is a MSI (two one for 32/64 bit) Here is how I am doing it: Go to Microsoft Download Center to get the MSI's Steve -Original Messag

Re: [WiX-users] using WiX with team foundation service

2013-02-28 Thread Christopher Painter
If there is a NuGet package for WiX, that's news to me. The one time I played with WiX on the TFS Hosted Build Agent I had to check all the WiX binaries into source control and tweak the a few things in the targets file or something (don't fully remember ) to get it to all line up. And I ha

[WiX-users] using WiX with team foundation service

2013-02-28 Thread Sean Farrow
Hi, I am looking at using Wix for an installer. We are using Team foundation service for this. Can I just install the NuGet package in to my project and go from there or is there other things I need to do? Any help appreciated. Regards Sean. --

Re: [WiX-users] deactivate UAC before installing

2013-02-28 Thread Alain Forget
I use this, but there may be a better way: Privileged OR AdminUser -Original Message- From: Christoph Goetz [mailto:christoph.go...@giepa.de] Sent: February 28, 2013 03:14 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] deactivate UAC before i

[WiX-users] sql ce deployment

2013-02-28 Thread Sean Farrow
Hi, I am considering using Sql ce for my next project that will require a local database. Has anyone done any deployment with this using burn/is thee an msi available to deploy the necessary redistributable bits? Any help appreciated. Regards Sean. ---

Re: [WiX-users] Looking for a simple default bootstrapper

2013-02-28 Thread Pally Sandher
Burn's standard BA can be very minimal if you configure it to be. Mine is simply a dialog with some images/text and install & cancel buttons. Clicking install will attempt to install .NET 4.0 client profile followed by my MSI(s). Use something like Since LicenseUrl is empty, i

Re: [WiX-users] Strange issue during netfx4 installation

2013-02-28 Thread Pally Sandher
Use WiXNetFXExtension -> http://wix.sourceforge.net/manual-wix3/install_dotnet.htm Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the ** Integrated Environmental Solutions Limited. Registere

Re: [WiX-users] Copy File Setting source and destination property value setting

2013-02-28 Thread Pally Sandher
Create [INSTALLLOCATION]\Website\App_Config in your Directory Tree & use the DestinationDirectory attribute instead of DestinationProperty. Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the

[WiX-users] Bundle: Way to do no action in case of Repair for an ExePackage

2013-02-28 Thread Tobias S
Hi, Assume I have a bundle consisting of 1 MSI + 1 EXE and Exe doesn't support repair. Is there a way to configure the exe that burn does no repair action for the exe but for the MSI? like e.g. Best Regards, Tobias -- E

Re: [WiX-users] WIX MSBuild Issue

2013-02-28 Thread John Cooper
Yes, I suspect the timestamps are tweaked during signing--I've never been able to get signing to work right except in an AfterBuild target at or near the end of the run. How do you link in your features. We use a wixlib for each feature, link it into the main install build, and then sign every

[WiX-users] Looking for a simple default bootstrapper

2013-02-28 Thread bwehking
Hello, I arrived at WiX after some years of IS. Currently I explore WiX and learn how it can be used for our products. I've come so far that I am a proud creator of a small working MSI. But now I guess I have "burnt" my fingers at the bootstrapper idea :) I need a bootstrapper that installs the

[WiX-users] Copy File Setting source and destination property value setting

2013-02-28 Thread chennam
Hi, I want to achieve copy file and was able to do when I am setting the destination and source folder property values hard coded. But when I try to do using the property value like "[INSTALLLOCATION]\Website\App_Config" it does give an error saying "could not find the location". And [INSTALLOCATI

[WiX-users] Strange issue during netfx4 installation

2013-02-28 Thread Pasquale Fersini
Hi all, in my Bootrapper project I use an ExePackage like this: http://go.microsoft.com/fwlink/?LinkId=164193"; InstallCommand="/quiet /norestart AGREETOLICENSE=YES" RepairCommand="/q ACTION=Repair /hideconsole /norestart"DetectCondition="NET4Installed = 1"> but sometimes (I don't k

Re: [WiX-users] Some events of BootstrapperApplication not reached

2013-02-28 Thread Rob Mensching
Those callbacks are fired when you tell the engine to Apply(). On Thu, Feb 28, 2013 at 3:12 AM, Ingo Fischer wrote: > > Hello, this is the constructor of my viewmodel: public > InstallationPackageBundleBaViewModel(BootstrapperApplication bootstrapper) > { > Bootstrapper = boo

[WiX-users] Some events of BootstrapperApplication not reached

2013-02-28 Thread Ingo Fischer
Hello, this is the constructor of my viewmodel: public InstallationPackageBundleBaViewModel(BootstrapperApplication bootstrapper) { Bootstrapper = bootstrapper; Bootstrapper.DetectBegin += BootstrapperDetectBegin; Bootstrapper.DetectPackageBegin += Boot

Re: [WiX-users] deactivate UAC before installing

2013-02-28 Thread Christoph Goetz
Yes, of course I meant this. Sorry. Verschlüsseln Sie Ihre E-Mails mit gpg4o für Outlook 2010 - Christoph Götz Softwareentwickler Giegerich & Partner GmbH Robert-Bosch-Straße 18