Re: [WiX-users] modify CheckBox control

2012-09-05 Thread Ingo Fischer
Thank you Peter. Good page to show to my marketing-boss who wants to have fancy UI in all colors of the rainbow. My understanding of a setup is, it should be stable and fast. Who buys an application because of its setup ? Well, I hope this is not end for WIX in our company. I kind of like it a l

Re: [WiX-users] MsiPackage - Uninstall After

2012-09-05 Thread Rob Mensching
Burn doesn't support that. What is the underlying requirement? I've never heard the need for such complexity. On Wed, Sep 5, 2012 at 3:02 PM, Adam Westhusing wrote: > I've got a bundle that contains 3 MSIs (A, B, and C). I want one MSI (A) > to > always install and uninstall after another one (B

[WiX-users] MsiPackage - Uninstall After

2012-09-05 Thread Adam Westhusing
I've got a bundle that contains 3 MSIs (A, B, and C). I want one MSI (A) to always install and uninstall after another one (B). The After attribute works on install (A properly installs after B), however on uninstall I want A to uninstall after B as well but Burn always runs the Chain in reverse

Re: [WiX-users] Running an Exe

2012-09-05 Thread Hoover, Jacob
Natalie, It is not recommended to do concurrent installs with a pure MSI based approach (http://msdn.microsoft.com/en-us/library/windows/desktop/aa368010(v=vs.85).aspx). Either it has to be transformed into a merge module and thus a single install, or you need to generate a Burn bundle (or yo

Re: [WiX-users] Running an Exe

2012-09-05 Thread Christopher Painter
There is a mutex to prevent multiple execute sequences. If you are doing some kind of hack in MSI then you need to do it all from the UI sequence of the parent installer. If you want that parent to ever work silently the closest you'll get is 'non-interactive' using /qr. You didn't seem to '

Re: [WiX-users] Custom action question

2012-09-05 Thread Christopher Painter
FWIW, while .NET has the System.Environment class available, I tend to still use the MSI provided OS Properties ( [ProgramFilesFolder] [ProgramFiles64Folder] ) for these types of resolution. It's a not reinvent the wheel kind of thing. From: keith.doug

[WiX-users] Custom action question

2012-09-05 Thread Keith.Douglas
I have a 32 bit application whose installation package includes a CA written in C#. This works fine on 32 bit Vista and fails to work on x64 Windows 7. At first I caught that I had accidentally hardcoded to C:\program files\, but I have since written in a check to see whether or not we're on 32

Re: [WiX-users] ia64 libraries are missing in WiX 3.6 SDK

2012-09-05 Thread Rob Mensching
Missed this. Note: ia64 is going away in WiX v3.7 because the VS tools don't support building it any longer. Who still uses ia64? On Wed, Sep 5, 2012 at 3:49 AM, Vazhenin, Maksim wrote: > Hi, > > We try to move to the new version of WiX but ia64 versions of libraries in > the SDK are missing.

Re: [WiX-users] Wix 3.5 DTE automation - Add Extension Reference to wixproj

2012-09-05 Thread Rob Mensching
If someone wanted to implement it, I suppose Votive should support it. On Wed, Sep 5, 2012 at 9:11 AM, Maillet, Ed wrote: > It perhaps does in part by accident!? You can use the DTE interfaces to > add a reference to a Project if you have both the wix project and the > reference project objects.

Re: [WiX-users] Wix 3.5 DTE automation - Add Extension Reference to wixproj

2012-09-05 Thread Maillet, Ed
It perhaps does in part by accident!? You can use the DTE interfaces to add a reference to a Project if you have both the wix project and the reference project objects. Would DTE automation fall as a feature request or would it be considered too far off the beat path? -Original Message---

Re: [WiX-users] Burn - InstallAnywhere ExePackage

2012-09-05 Thread jhennessey
I just created a stand-alone executable. As long are you already require .NET then it makes sense to do it in C#. In my particular case I did it in vc++ (and statically linked the runtime) so I could use it for both native and managed bundles. -- View this message in context: http://windows-ins

Re: [WiX-users] Burn - InstallAnywhere ExePackage

2012-09-05 Thread Thomas . Deboben
Hi, I guess I have to go the same way for the PostgreSQL installer (made with bitrock). How do you have created the stub EXE? Is ther something within the WIX toolset or do I have to create a C# project? Best regards, Thomas Von:jhennessey An: wix-users@lists.sourceforge.net Datum

Re: [WiX-users] modify CheckBox control

2012-09-05 Thread Peter Shirtcliffe
Wix doesn't provide any UI controls. It simply enables you to use Windows Installer controls. Your options are limited to what is described here http://msdn.microsoft.com/en-us/library/windows/desktop/aa368041%28v=vs.85%29 .aspx Note especially, "However, not all standard Microsoft Windows controls

Re: [WiX-users] modify CheckBox control

2012-09-05 Thread Ingo Fischer
Thank you Pally the answer. I think the link is about customizing dialogs ( or remove whole dialogs from a setup-wizard ). I would like to customize a control. e.g. How can I make a checkbox a threeangle and the hook 5 times bigger and red... > From: pally.sand...@iesve.com > To: wix-users@

[WiX-users] Remove and Repair in custom dialog

2012-09-05 Thread Natalie Carr
Hi, can anyone tell me why my remove and repair button won't work. I have recreated the VerifyReadyDlg to fit my own custom dialogs. WixUI_InstallMode = "Repair" WixUI_InstallMode = "Repair" WixUI_InstallMode = "Repair"

Re: [WiX-users] modify CheckBox control

2012-09-05 Thread Pally Sandher
To start you off see http://neilsleightholm.blogspot.co.uk/2008/08/customised-uis-for-wix.html 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 Limite

[WiX-users] modify CheckBox control

2012-09-05 Thread Ingo Fischer
Dear Friends, how can I change / modify the CheckBox control. Or in general a control comming with the Wix toolset. I suppose I have to modify the downloaded Wix sources ..? For example, if a checkbox is checked, it should appear on a blue background. If it is not checked, the background shou

[WiX-users] ia64 libraries are missing in WiX 3.6 SDK

2012-09-05 Thread Vazhenin, Maksim
Hi, We try to move to the new version of WiX but ia64 versions of libraries in the SDK are missing. Could you update the package or at least SDK? Thanks, Maksim -- Live Security Virtual Conference Exclusive live event w

Re: [WiX-users] Running an Exe

2012-09-05 Thread Natalie Carr
Hi, Thanks, I don't want to use Burn as I have spent a great deal of time making my own dialog set to cater for our needs and I do not like the way if you display your own MSI dialogs it still shows the Burn dialog. Thanks for your answer though..:) -Original Message- From: Pally Sandher

Re: [WiX-users] Running an Exe

2012-09-05 Thread Pally Sandher
This is what you're doing wrong -> http://msdn.microsoft.com/en-us/library/windows/desktop/bb204770.aspx#concurrent_installs This is how you fix it -> http://wix.sourceforge.net/manual-wix3/authoring_bundle_intro.htm Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44

Re: [WiX-users] Running an Exe

2012-09-05 Thread Natalie Carr
I've tried the full path also but that made no difference..:( -Original Message- From: Adam Kadzban [mailto:mightyshorta...@gmail.com] Sent: 05 September 2012 00:36 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Running an Exe What's the error you're g

Re: [WiX-users] Running an Exe

2012-09-05 Thread Natalie Carr
I had the ExeCommand as "-switch" but that didn't work so I tried the name of the exe. There is no error, it just doesn't run the exe. -Original Message- From: Nick Ramirez [mailto:nickra...@hotmail.com] Sent: 04 September 2012 19:29 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-u

Re: [WiX-users] failed to uninstall 3.6.2130.0 ?

2012-09-05 Thread Simon Dahlbacka
Thanks, that did the trick! On Tue, Sep 4, 2012 at 11:14 PM, Rob Mensching wrote: > Old bug in Burn required the download of exe packages even though they > would not be uninstalled. That was fixed later. Your connection to the > internet (maybe a proxy) is also taking longer than the default t