[WiX-users] WIXSTDBA Wix Standard Bootstrapper application hide option button on upgrade.

2014-05-13 Thread Hans De Groot
How can I hide the options ui during upgrade. Now the upgrade looks exactly like a clean install. I know you can use SuppressOptionsUI but that also hides the options on clean install. Hans -- "Accelerate Dev Cycles with

Re: [WiX-users] Burn custom UI, second browse button

2014-02-13 Thread Hans De Groot
February 2014 11:21, Hans De Groot wrote: > Hello, > > I'm trying to a second location + browse button the standard > bootstrapper application. I currently have this: > > FontId="2">#(loc.OptionsHeader) > FontId="3">#(loc.

[WiX-users] Burn custom UI, second browse button

2014-02-13 Thread Hans De Groot
do I change the stba to support multiple input fields with a browse button. Hope you can help, Regards, Hans de Groot -- Android apps run on BlackBerry 10 Introducing the new BlackBerry 10.2.1 Runtime for Android apps

Re: [WiX-users] Adding only missing xml elements

2013-11-08 Thread Alexander op de Weegh
Hi John, Could you supply me some example code? I tried the util:XmlConfig before, but without any luck. Met vriendelijke groet, Alexander op de weegh Total Productivity tel.:+31-226335016 mob.: +31-620138301 -Oorspronkelijk bericht- Van: John Cooper [mailto:jocoo...@jackhenry.com

[WiX-users] Adding only missing xml elements

2013-11-07 Thread Alexander op de Weegh
r example, the element might already be there (or not!). Even more, there might already be an endpoint element with the required contract attribute. How can I make sure my model only adds the missing elements? Kind regards

[WiX-users] How to include (and use) dialog in a merge module

2013-11-07 Thread Alexander op de Weegh
from link. I also tried to replace the Id of the dialog with the Id including the Guid of the module (thus: UIRef Id='TestDlg.____'), but that didn't help either. How do I solve my issue? Kind regards, Alexan

Re: [WiX-users] Bundle with wrong size in Add/Remove entry

2013-07-12 Thread Niander Neves de Assis
Ok, But my bootstrapper (the .exe file generated) has the size of 120MB, and in the entry at Add/Remove programs the size of the bootstrapper is 415MB. I want to fix this. 2013/7/12 Alain Forget > I wondered the same thing, but I think it makes sense as it is, since the > all bundles for all in

Re: [WiX-users] Creating separate entries in Add/Remove for each MSI in a bundle

2013-06-27 Thread Niander Neves de Assis
Ohh that is it! I didn't know about the Visible attribute. Thank you very much 2013/6/27 Alain Forget > If you're using Burn, wouldn't you just be able to set the MsiPackages' > Visible attribute to yes, and Permanent to yes (so that all the packages > aren't automatically uninstalled if the B

[WiX-users] Multiple custom actions, urgent help needed!

2013-03-07 Thread Bastiaan de Waard
t figure out how to specify the condition between the tags. With above conditions the installer still executes the custom action even when component BMXSCRIPT is not installed.     Thanks in advance,     Bastiaan de Waard Kuipers Electronic Engineering B.V. Houtkopersstraat 6, 3334 KD Zwi

[WiX-users] Delphi - Custom action issue

2011-05-23 Thread Daniel de Zwart
I have a small delphi DLL that looks like this library Project1; uses SysUtils, Classes, Dialogs, Windows; {$R *.res} function cShowMessage(thing:string) :integer ; export; begin ShowMessage(thing); cGetVersion := 0; end; exports cGetVersion; begin end. And then inside my wix appl

[WiX-users] How to change an entry using XmlConfig

2010-08-31 Thread Alexander op de Weegh
: LGHT0204 : ICE03: Invalid format string; Table: XmlConfig, Column: ElementPath, Key(s): MySqlConnectionProperty Can anyone help me out here? Thanks in advance, Met vriendelijke groeten / With kind regards, Alexander op de Weegh Office: +31(0)226-335023 Mobile: +31(0)6-20138301 IPA

[WiX-users] How to write a custom action to launch an exe when UAC is cancelled or timed-out during uninstall ?

2010-05-27 Thread maria de souza
We are building an installer for our product using the WIX technology. We set InstallPrivileges to ‘elevated’ as we need to write to the HKLM hive etc. The application has an exe that is launched after installation and runs on the system. For several reasons, it needs to be stopped before the ‘Ins

Re: [WiX-users] Vs90Setup from WixVsExtension

2009-07-14 Thread Anton de Wit
Thanx for your reply! I'll dive into it first thing tomorrow. Cheers, Anton, On Tue, Jul 14, 2009 at 2:03 PM, Bob Arnson wrote: > Anton de Wit wrote: > > Now I have a problem. I'm using the 5419 build of Wix 3 and started out > > doing the same. Place files in GAC

[WiX-users] Vs90Setup from WixVsExtension

2009-07-13 Thread Anton de Wit
Hi all, new to the list and thought I should start out with a question :) At work we recently migrated to Wix 3 and visual studio 2008. I need to build some installers that will install our visual studio packages. In our previous version we used wix 2 and targeted Visual Studio 2005. At that mome

Re: [WiX-users] Reference to Wixproj file

2009-07-13 Thread Anton de Wit
Hi, I suppose those references you saw being used were references to .wixlib projects or Wix Library Projects. Those types of projects can indeed be referenced in Wix projects and (afaik) are mainly used for reusable wix sections. Not sure if regular wix projects can be referenced. That would see

[WiX-users] removal of comment in sql scripts by using SqlScript

2007-11-21 Thread Jaap de Wolff
Hello, At this moment scripts that are run during installation are stripped before processing. It is removing comment and spaces before it processes the script. (I checked in source code, this happens in scasqlstr.cpp line 282 and further for version 2.0.5805.0) Is there a good reason for this?

[WiX-users] How to add sections properly to app.config

2007-07-26 Thread Jaap de Wolff
Hello, I am using Wix 2.0.5325.0 I have a app.config that I want to modify: Value MyValue I want to insert the blue lines. Remark, there are already lines before with the same node names before the inserted lines! I

[WiX-users] Problem with VS2005

2007-07-26 Thread Jaap de Wolff
Hello, After not using WIX a while, we made a new release, and now VS2005 is crashing when i want to create a new WIX project. Also opening an old wix project, does not open anything. I already removed and reinstalled votive, but this did not solve the problem. I recently installed also Extension

Re: [WiX-users] Components

2007-06-10 Thread Peli de Halleux
Hi Jerome, The way I solved the GUID problem was to store the mapping (file -> GUID) to a file (as xml). This mapping is automatically updated (lazy allocation of new guids for new files) and used by the automation to re-generate the wix file. Off course, that might be tricky to implement in XS

Re: [WiX-users] How to create folders and shortcuts in the Start Menu? (Wix 3.0)

2007-03-15 Thread DE
I'd just like to ask some questions relating to this area, because I cannot find much meaningful documentation about it. All we want to do is create shortcuts to some of the files we are installaing. We are using the latest Votive. Assume we are happy to install to all users. 1) What exactly does

[WiX-users] Votive for Orcas

2007-03-13 Thread Peli de Halleux
The Wix v3 installer currently does not detect Orcas CTP. Is it planned to support it? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions

[WiX-users] Placing PDB next to assemblies in the GAC

2007-02-06 Thread Peli de Halleux
I am looking for a way to place the symbol files (pdb's) next to assemblies that are installed in the GAC (to get nice stacktraces). Has anybody already tried this? Thanks, Peli - Using Tomcat but need to do more? Need to su

Re: [WiX-users] Trouble creating shortcut to a folder.

2007-01-10 Thread Wout de Zeeuw
I bet this is not the proper way of replying to a post, but couldn't find the right way! Anyways, thanks for your reply... it does confirm the feeling that I had about creating the shortcut/registry keys. I can live with a few dangling registry keys, so I'll go for the solution creating those b

[WiX-users] Trouble creating shortcut to a folder.

2007-01-10 Thread Wout de Zeeuw
Hi, I'm trying to create a shortcut to a folder, and have somewhat succeeded, but not entirely to my liking, and there are a few things that I don't understand being fairly new to the msi installer world. At the bottom is a .hxs file that does compile and work. So here's my small list of quest

Re: [WiX-users] Set Installdir

2006-08-10 Thread Jaap de Wolff
I do the same , I use After="LaunchConditions", which is about the first possible moment > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Alexander > Gnauck > Sent: donderdag 10 augustus 2006 10:39 > To: wix-users@lists.sourceforge.net > Subject: [WiX-us

Re: [WiX-users] SqlScript and CustomActions

2006-07-12 Thread Jaap de Wolff
ant. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Michael > Osmond > Sent: donderdag 13 juli 2006 3:02 > To: Jaap de Wolff; wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] SqlScript and CustomActions > > > Hell

[WiX-users] SqlScript and CustomActions

2006-07-12 Thread Jaap de Wolff
Hello, I want to create a database, run an sql script to create tables etc. then do a few custom actions, which fill the database, and then execute a few sql strings. The last sql strings contain values which depend on customer choices. My question is: Is there a way of scheduling custom actions b

Re: [WiX-users] help convincing management to use wix

2006-06-02 Thread Jaap de Wolff
Maybe a strong argument is telling them how commercially supported applications is working in the real world. As an example: A few years ago we discovered there was a bug in the MS COM component. This problem was a show stopper for us. We have a nice contract with MS that allows us to send them pr