[WiX-users] How to create an installer looks like Visual Studio 2010

2010-09-29 Thread puyo puy
Hi Guys,   Dose anyone know how to create an installer looks like VS 2010?  I love the way/UI how they present, especially the features tree and installing components window.   Features Tree

[WiX-users] How to create bootstrapper to deploy more than one MSI installer

2010-07-27 Thread puyo puy
Hi everyone, I'm looking for MSBuild scripts to create a bootstrapper  file to deploy 3 custom MSI installers,  if any of these installers failed, I have to rollback all these changes.   For example: I have to deploy App1.msi, App2.msi and App3.msi, the bootstrapper will check for .Net 3.5 as

[WiX-users] Disable feature when feature already installed

2010-04-13 Thread puyo puy
Hello everyone,   I got multiple  products that will deploy the same feature.  For example Word, Excel and PowerPoint standalone MSI will deploy spelling check feature.  If any of these products already installed spelling check feature, running other products setup will disable the

Re: [WiX-users] Disable feature when feature already installed

2010-04-13 Thread puyo puy
...@joyofsetup.com Subject: Re: [WiX-users] Disable feature when feature already installed To: wix-users@lists.sourceforge.net Received: Wednesday, 14 April, 2010, 9:17 AM On 4/13/2010 8:18 PM, puyo puy wrote: I got multiple  products that will deploy the same feature.  For example Word, Excel

Re: [WiX-users] Wix 3.5 - current state of Burn

2010-03-15 Thread puyo puy
Hi Jacques, I tried to use setupbld.exe to create a my bootstrap with 3 MSI installers. It can install one by one but the silent install doesn't work as I expected.  I used the following command to create the bootstrap. setupbld -setup C:\Program Files\Windows Installer XML v3\bin\setup.exe 

Re: [WiX-users] How to create a big MSI like Microsoft Office

2010-03-11 Thread puyo puy
modules.  --- On Tue, 9/3/10, Bob Arnson b...@joyofsetup.com wrote: From: Bob Arnson b...@joyofsetup.com Subject: Re: [WiX-users] How to create a big MSI like Microsoft Office To: wix-users@lists.sourceforge.net Received: Tuesday, 9 March, 2010, 9:21 PM On 3/9/2010 12:10 AM, puyo puy wrote

Re: [WiX-users] How to detect whether a service is running or not

2010-03-11 Thread puyo puy
ServiceControl Id='MyServiceControl' Name='MyServiceExeName' Start='install' Stop='both' Remove='uninstall' / mean: start the service on install, remove the service when the product is uninstalled, and stop the service both on install and uninstall. Refer to ServiceControl Element in Wix help

[WiX-users] How to create a big MSI like Microsoft Office

2010-03-08 Thread puyo puy
My company want to create a big msi installer that will bundle different products.  We want to create something similar to Microsoft office that included Word, Excel, Outlook etc.. I’m doing research to find the best way to archive that.  The requirement was we cannot use exe that mean I

Re: [WiX-users] Sending custom message to log file

2009-09-20 Thread puyo puy
On 18.09.2009, at 05:11, puyo puy wrote: Hi there, I want to send custom debug message to my installer's log file after  a custom action has been exectued. I found their is a useful  information from http://www.dalun.com/wix/06.26.2005.htm        Binary Id='Customization.vbs' src

[WiX-users] Sending custom message to log file

2009-09-17 Thread puyo puy
Hi there, I want to send custom debug message to my installer's log file after a custom action has been exectued. I found their is a useful information from http://www.dalun.com/wix/06.26.2005.htm   Binary Id='Customization.vbs' src='Customization.vbs'/   CustomAction Id='test'

Re: [WiX-users] Wix 3.0 FileSearch

2009-09-15 Thread puyo puy
the standard AppSearch runs, and that was the question Sebastian asked. Can you confirm that INSTALLDIR is set before the AppSearch action runs? Please search a debug verbose log for INSTALLDIR to see when it is first set, and if that is before AppSearch or after. -Original Message- From: puyo puy

Re: [WiX-users] Wix 3.0 FileSearch

2009-09-14 Thread puyo puy
Hi, Can someone from WIX confirm that is a bug or I did something wrong. Thanks Jeff --- On Fri, 11/9/09, puyo puy puyo...@yahoo.com wrote: From: puyo puy puyo...@yahoo.com Subject: Re: [WiX-users] Wix 3.0 FileSearch To: General discussion for Windows Installer XML toolset. wix-users

[WiX-users] Wix 3.0 FileSearch

2009-09-10 Thread puyo puy
Hi there, I'm trying to create msi installer using wix and this installer will search for old application for current install location.  When the old application found, a custom action will execute the old application. I used the following script to search for the old application.      

Re: [WiX-users] Wix 3.0 FileSearch

2009-09-10 Thread puyo puy
trying to get sub-directories. Best regards, Sebastian Brand Instyler Setup - Creating WiX-based MSI installations, elegantly. http://www.instyler.com -Original Message- From: puyo puy [mailto:puyo...@yahoo.com] Sent: Thursday, September 10, 2009 10:31 To: wix users Subject: [WiX-users] Wix

[WiX-users] Associate file extension at the end of installation

2009-06-05 Thread puyo puy
Hi,   I would like to display a checkbox at the end of installation ask user whether he want to associate file extension (e.g. SQL file) to my application.  I modified my WIX scripts and add the following lines.  It won’t take effect unless I pass in SQL_EXTENSION =TRUE with silent install. 

[WiX-users] Associate file extension

2009-05-20 Thread puyo puy
Hi Everyone,   I want to create a feature allow user to associate a file extension to one of my distubuted applicatio but it comes up with the following error message:   error LGHT0204 : ICE69: Mismatched compone nt reference. Entry 'reg025239CBB8E309CA4AF78D766B8DBDE4' of the Registry table

Re: [WiX-users] Unable to register COM dll in Merge Module

2009-01-15 Thread puyo puy
/ and SelfUnRegModules/ elements (no attributes necessary) to your InstallExecuteSequence/ element. -Original Message- From: puyo puy [mailto:puyo...@yahoo.com] Sent: Wednesday, January 14, 2009 17:18 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Unable to register COM dll in Merge

[WiX-users] Unable to register COM dll in Merge Module

2009-01-14 Thread puyo puy
Hello everyone, I'm try to compile a msm(Merge Module) into my existing MSI installer. In this msm file only got two files(1 xml and 1 dll COM). This msm suppose to install the files in the target machine and registr(regsvr32) the COM dll. I used the following scripts to create the msi.

Re: [WiX-users] RemoveRegistryKey and uninstall

2009-01-14 Thread puyo puy
Have you try to put removeOnUninstall in Action attribute ? More details From: Colin Bleckner co...@binarynoise.net To: wix-users@lists.sourceforge.net Sent: Thursday, 15 January, 2009 11:57:51 AM Subject: [WiX-users] RemoveRegistryKey and uninstall I have a

Re: [WiX-users] Upgrade basis on installdir

2008-03-29 Thread puyo puy
an installer for version 1.0. You also need a separate installer for version 1.5 and an upgrade for 1.0 to upgrade it to 1.5 and so on. Alex From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of puyo puy Sent: Tuesday, March 25, 2008 12:19 AM To: wix-users@lists.sourceforge.net

[WiX-users] Shortcut icon

2008-02-29 Thread puyo puy
Hi Guys, I'm new to use WIX to create MSI. I want to create a pdf file shortcut in start menu. But it won't pick up the pdf icon from system. Any suggestion how to fix this problem? ?xml version=1.0 encoding=UTF-8? Product Id=75738188-7566-4524-9834-0c21331e4622 Name=Wix shortcut