[WiX-users] Removing Options button from Burn dialog

2011-03-08 Thread Stanfield, Albert R
Hi, I would like to remove the [Options] button from the Burn dialog when BootstrapperApplicationRef's Id is set to "WixStandardBootstrapperApplication.RtfLicense". I understand that I most likely will need to modify the source; no problem. Where should I look? Thank you, --Albert -

Re: [WiX-users] How can I abort the install?

2011-03-08 Thread Chris Lord
Miaohsi Calling one installer from within another is a big no, no and Microsoft recommends you do not do it. You should use a bootstrapper such as Burn in order to call which installer you need. As for exiting gracefully, I think more details on what the installer is doing would be needed to

Re: [WiX-users] how to include Component Win64 in heat.exe result.

2011-03-08 Thread Tobias S
Think there is no direct flag. Use a xslt to transform the generated file instead. In http://www.wixwiki.com/index.php?title=Heat there exists a sample how to do so. Best regards Tobias 2011/3/8 Thai-Hoa Nguyen : > > When running heat.exe, what flag do I use to turn on the Component Win64 > at

Re: [WiX-users] I want the next button to be disabled if "Entire feature will be unavailable" is selected in a feature tree.

2011-03-08 Thread Tobias S
Afaik not possible the way you are planing it. Just did a test with modifying the NEXT button on a CustomizeDlg with following code: Right now it refreshes the button state when disabling the feature click back and click next again. But

Re: [WiX-users] Using a file from media in a custom action.

2011-03-08 Thread Tobias S
Some construct referencing the corresponding File ID (Here quick & dirty for a MSI DLL) ? 2011/3/8 Mark Tempel : > I'm trying to avoid including the file in the binary table because it is an > extra 900K added to a 6.5Meg installer. > > It is a dll that I need to unpack and explicitly load from

Re: [WiX-users] 64 bit registry issue with CA

2011-03-08 Thread Wilson, Phil
... and to state the obvious, the registry entries aren't being redirected because a 64-bit install is running a 64-bit regedit, which again is why regedit is the wrong thing to do. Phil Wilson -Original Message- From: Michael Osmond [mailto:mosm...@baytech.com.au] Sent: Mo

Re: [WiX-users] Installer question. What does UNKNOWN and Note mean?

2011-03-08 Thread Wilson, Phil
It seems to be Windows checking for existing products (I think reading rather than writing) and 1402 is just the boring MSI error "Could not open key" beause of system error 2 ("no file"). It's likely to be "unknown" because at that point in the logging it doesn't know (or care) whether it's ref

Re: [WiX-users] Using a file from media in a custom action.

2011-03-08 Thread Mark Tempel
I'm trying to avoid including the file in the binary table because it is an extra 900K added to a 6.5Meg installer. It is a dll that I need to unpack and explicitly load from a custom action. The action will be run before files are copied to the install directory (where this dll will have to live

[WiX-users] how to include Component Win64 in heat.exe result.

2011-03-08 Thread Thai-Hoa Nguyen
When running heat.exe, what flag do I use to turn on the Component Win64 attribute? Thank you. -- What You Don't Know About Data Connectivity CAN Hurt You This paper provides an

Re: [WiX-users] Using Heat.exe for Minor Upgrade

2011-03-08 Thread Thai-Hoa Nguyen
Thank you. I'll use heat -ag prior to shipping version 1. > Message: 1 > Date: Tue, 8 Mar 2011 07:42:15 -0800 > From: Rob Mensching > Subject: Re: [WiX-users] Using Heat.exe for Minor Upgrade > To: "General discussion for Windows Installer XML toolset." > > Message-ID: > > Content-Type: text

[WiX-users] How can I abort the install?

2011-03-08 Thread Wang, Miaohsi
Dear All, I am working on a WiX installer that allows the user to install either the product or a third-party software. If the user selects to install the third-party software, the installer should launch the third-party installer, wait for it to complete, and then exit the install. Does anyone

[WiX-users] INSTALLLOCATION wrong value during uninstall (has the default value, not the used one)

2011-03-08 Thread Leung, John C.H.
I ran into this issue in the past and couldn't quite figure out what is the cause of the problem. But looking at your re-pro steps, looks like simply having a file being present in the "INSTALLLOCATION" root directory would force the INSTALLLOCATION to be properly updated. I'm wondering if you

Re: [WiX-users] Network Path

2011-03-08 Thread George Thuo
Thanks Rob, will check this out! George. On 03/08/11 9:44 AM, Rob Mensching wrote: > Install the MSI to "Run From Source". See the ADDSOURCE documentation: > http://msdn.microsoft.com/en-us/library/aa367538(v=VS.85).aspx > > On Mon, Mar 7, 2011 at 12:16 PM, George Thuo wrote: > >> I'm running a

[WiX-users] Wix and MSMQ: MSMQ Detection

2011-03-08 Thread mann1402
Hi, I have to create a message queue if MSMQ is installed. If MSMQ is not installed then move forward without doing anything. Is there a way, we can found that whether MSMQ is installed in MSMQExtension dll. I know, We can use Registry for the same but installer will fail if MSMQ is not insta

[WiX-users] MajorUpgrade and overwriting unversioned (text) files.

2011-03-08 Thread Umeshj
Hi, Can someone explain how to achieve this? We have a Major Upgrade task which seemed to work with early schedulling of RemoveExistingProducts. But it started failing due to a bug in MSI where an assembly was being placed in GAC and used duing installation for a custom action. During upgrade th

Re: [WiX-users] Setting up efficient environment for testing installation packages?

2011-03-08 Thread Christopher Painter
For the purpose of my article it doesn't matter either way you go.   I've done it  both ways and I'll agree it's a lot more complicated getting a stand alone Hyper-V server initially configured but once it is I administer it remotely just like any other server. ( Zero Touch ) .   To me the disa

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
OK, I think I'm going to stick with 3.1 What is the state of Burn ... is it possible to modify the UI and show the msi UI ? Thanks. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: 8 March 2011 15:41 To: General discussion for Windows Installer XML toolset. Su

Re: [WiX-users] Network Path

2011-03-08 Thread Rob Mensching
Install the MSI to "Run From Source". See the ADDSOURCE documentation: http://msdn.microsoft.com/en-us/library/aa367538(v=VS.85).aspx On Mon, Mar 7, 2011 at 12:16 PM, George Thuo wrote: > I'm running a MSI install file to register DLL's on client machines. The > DLL's are located on a server sha

Re: [WiX-users] Using Heat.exe for Minor Upgrade

2011-03-08 Thread Rob Mensching
Or use Heat with the -ag switch to make it generate *stable* GUIDs. Probably not helpful if you already shipped. On Thu, Mar 3, 2011 at 3:01 PM, John Robbins wrote: > It sounds like my Paraffin tool will meet your needs as that's exactly the > reason I wrote it. :) > > > http://www.wintellect.c

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Rob Mensching
Specifically: 1. IIRC, MSI 4.0 is not redistributable. You'd have to ship MSI 4.5. You'll probably have to reboot. 2. Yes, Burn can handle installing MSI 4.5 redist. On Tue, Mar 8, 2011 at 7:23 AM, Pally Sandher wrote: > You can set the minimum version of Windows Installer your package > suppor

[WiX-users] Installer question. What does UNKNOWN and Note mean?

2011-03-08 Thread Kevin Burton
This isn't a direct WiX question but there may be something that I am missing in the WiX code that can avoid this. I notice in the log towards the end if the installation process it looks like: MSI (s) (10:E8) [09:03:36:243]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Pally Sandher
You can set the minimum version of Windows Installer your package supports using the InstallerVersion attribute of the Package Element -> http://wix.sourceforge.net/manual-wix3/wix_xsd_package.htm Windows Installer v2.0, v3.1 & v4.5 are available as redistributables from Microsoft which you can bo

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
OK, but how do I do that ... can I do it with Burn ? -Original Message- From: Skildum, Mathew [mailto:mathew.skil...@aspect.com] Sent: 8 March 2011 15:06 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] msiexec redistributable In those cases where you re

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Skildum, Mathew
In those cases where you require a newer version of the MSI engine than what is installed, you will have to have a prerequisite installer in place to check for and install the required MSI engine. Mat Skildum Aspect Software direct: 630.227.8534 mobile: 847.909.9921 mathew.skil...@aspect.com --

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
Well some versions are and I need to ensure that 4.0 or 4.5 is installed -Original Message- From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] Sent: 8 March 2011 14:56 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] msiexec redistributable You don't.

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Peter Shirtcliffe
You don't. Its already present on all versions of Windows. -Original Message- From: Michael Tissington [mailto:michael_tissing...@ciqual.com] Sent: 08 March 2011 14:31 To: 'General discussion for Windows Installer XML toolset.' Subject: [WiX-users] msiexec redistributable How do I packag

[WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
How do I package msiexec with my wix ? -- What You Don't Know About Data Connectivity CAN Hurt You This paper provides an overview of data connectivity, details its effect on application quality, and explores various alte

Re: [WiX-users] INSTALLLOCATION wrong value during uninstall (has the default value, not the used one)

2011-03-08 Thread Michael Urman
Directories are only automatically preserved when there is a component that installs to it. So make sure at least one component installs to INSTALLDIR. On Tue, Mar 8, 2011 at 03:31, MeCoco wrote: > Hi all, > > I tried to create a small sample to reproduce the problem I'm having, > and after a lot

Re: [WiX-users] Setting up efficient environment for testing installation packages?

2011-03-08 Thread Jerra
Thank you, I will install Hyper-V on a Server 2008 R2 instead of using the standalone version of Hyper-V. Do difficult already for me and not having GUI doesn't help things. /Jerker On 8.3.2011 14:44, Christopher Painter wrote: > On the side as a one man consultant, this is how I roll at home:

Re: [WiX-users] Setting up efficient environment for testing installation packages?

2011-03-08 Thread Christopher Painter
On the side as a one man consultant, this is how I roll at home: http://blog.deploymentengineering.com/2008/07/virtual-brownbag-installation-testing.html At my day job I'm on a 10 person Build/Install team serving about 250 developers.  We use a system called VMLogix that sits on top of ESX.  I

[WiX-users] Setting up efficient environment for testing installation packages?

2011-03-08 Thread Jerra
This is off-topic, but I assume the knowledge can be found within this list. Can someone point me to some pages on how to setup an efficient environment for testing installation packages? I have Hyper-V 2008 R2 Server installed and I have started installing guests but I don't want to go much fu

Re: [WiX-users] INSTALLLOCATION wrong value during uninstall (has the default value, not the used one)

2011-03-08 Thread MeCoco
Hi all, I tried to create a small sample to reproduce the problem I'm having, and after a lot of tries I managed to reproduce it. The problem is described extensivly in my previous email, but a summary would be: if the user, when installing, changes the default directory (eg: from C:\Program F