Re: [WiX-users] Wix 3.0 FileSearch

2009-09-15 Thread puyo puy
Hi Blair, Thank you for your help.  I checked the log file.  AppSearch(property EXE_EXISTS) was set before INSTALLDIR but CA_RunEXE was called after INSTALLDIR set. Execute Sequences: 1. AppSearch property EXE_EXISTS assigned 2. Property INSTALLDIR assigned 2. CA_RunEXE custom

Re: [WiX-users] Conditional installed based on REG_MULTI_SZ value

2009-09-15 Thread Pally Sandher
No but you could attribute it to a bug in whichever version of Windows Installer you're using to test the MSI (v3.1 or v4.0 whether you're on XP/2k3 or Vista/2k8 respectively I'm guessing). People on this list really need to learn the difference between WiX Windows Installer. They are *not* the

[WiX-users] Faulting application setup.exe

2009-09-15 Thread BSR PHANI
hi All, i've a sample installer which will be called by my setup.exe, while launching setup.exe after welcome dialog suddenly installation was failing, even logs doesn't giving any errors, so went to the event viewer and i found one error. the error is like this: Faulting application setup.exe,

Re: [WiX-users] replacing DialogRef with Dialog is not working

2009-09-15 Thread Pally Sandher
I'd try changing Publish Dialog=LicenseAgreementDlg Control=Next Event=NewDialog Value=UserRegistrationDlg Order=2LicenseAccepted = 1/Publish To 'Order=1' as from looking at the WiX v3.0 sources, WiXUI_Mondo.wxs has the following: Publish Dialog=LicenseAgreementDlg Control=Next

Re: [WiX-users] Faulting application setup.exe

2009-09-15 Thread Pally Sandher
Looks like a problem with your bootstrapper. Try running it in a debug session. It shouldn't be affecting your installer though. Once msiexec has been called to run your MSI your bootstrapper *should* have nothing more to do with the whole process. Palbinder Sandher Software Deployment IT

Re: [WiX-users] Regarding .Net 3.5 SP1

2009-09-15 Thread Muthuramakrishnan
Hi, Thanks for your reply, but i have to merge that bootstrapper with my installer written by WIX. Please let me know, any thing wich will help me! Thanks S.Muthuramakrishnan. - Original Message - From: Pally Sandher pally.sand...@iesve.com To: General discussion for Windows

Re: [WiX-users] Preparing to install...

2009-09-15 Thread shibo
Bob, Sorry to trouble you. Our tests show different behaviours of this dialog when installing from local disk or CD room. Our installer of single MSI file is about 400MB. When installing from CD on a low spec machine, this Preparing to install dialog box is displayed immediately, then OS hangs

Re: [WiX-users] Conditional installed based on REG_MULTI_SZ value

2009-09-15 Thread Dominique Louis
I'm using v4.5.6001.22159 if that is any help to anyone. Is putting my CustomAction before LaunchConditions the best place to run my vbs, or would there be another more appropriate place? Dominique. -Original Message- From: Pally Sandher [mailto:pally.sand...@iesve.com] Sent: 15

[WiX-users] Component installed even if not part of selected feature

2009-09-15 Thread fiordean dacian
Hi, I have something like Component Id=C1 Guid=... DiskId=1    File Id=F1 Name=app.exe Source=c:\app.exe    Shortcut Id=app1Sc Name=app sc Icon=... IconIndex=.../    Shortcut Id=app1ScRmt Name=appSc Remote Icon=... IconIndex=.../    /File    File.../File    Registry.../Registry

Re: [WiX-users] Component installed even if not part of selected feature

2009-09-15 Thread Pally Sandher
Give both app.exe unique File Id's I suspect the shortcuts won't appear. Palbinder Sandher Software Deployment IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment** Integrated Environmental

Re: [WiX-users] Conditional installed based on REG_MULTI_SZ value

2009-09-15 Thread Pally Sandher
In that case are you bootstrapping the Windows Installer 4.5 redistributable before your installer runs so all your users/customers will be able to successfully install your product or are you also testing it on 3.1 4.0 to make sure they don't have problems? According to the docs

Re: [WiX-users] Regarding .Net 3.5 SP1

2009-09-15 Thread Svet Bonev
http://www.wixwiki.com/index.php?title=Deploying_Additional_Components might be helpful. -Original Message- From: Muthuramakrishnan [mailto:s...@srasys.co.in] Sent: Tuesday, September 15, 2009 5:07 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users]

Re: [WiX-users] Component installed even if not part of selected feature

2009-09-15 Thread fiordean dacian
Hi thanks Pally I confirm the C1 and C2 file IDs are all different (I missed that in my example for C2) --- On Tue, 9/15/09, Pally Sandher pally.sand...@iesve.com wrote: From: Pally Sandher pally.sand...@iesve.com Subject: Re: [WiX-users] Component installed even if not part of selected

Re: [WiX-users] Conditional installed based on REG_MULTI_SZ value

2009-09-15 Thread Blair
Make sure it is before LaunchConditions and after AppSearch (you can move either one of those if needed) For example: InstallExecuteSequence AppSearch Before=ParseSqlServerForMSSQL/ Custom Action=ParseSqlServerForMSSQL Before=LaunchConditions/ /InstallExecuteSequence InstallUISequence

Re: [WiX-users] Wix 3.0 FileSearch

2009-09-15 Thread Blair
You will need to calculate/retrieve INSTALLDIR via a custom action you run before AppSearch, or use some directory other than INSTALLDIR for our EXE_EXISTS property. Since you only run that EXE when it was previously present, is that EXE placed there using a previous installer package? Could you

Re: [WiX-users] Component installed even if not part of selected feature

2009-09-15 Thread Blair
First thing I see is a component rule violation: C1 and C2 have the same keypath (assuming both components are in the same directory). File F1 should be installed by one and only one component (same with every other resource). You will need to fix that somehow, since violations of the component

Re: [WiX-users] Conditional installed based on REG_MULTI_SZ value

2009-09-15 Thread Dominique Louis
I find it weird that the WI would reject VBS but accept a C/C++ dll? There is nothing stopping someone from writing dodgy code in C/C++ and shipping it with an installer. Just because it is compiled it's safer? Out software should be installed by Administrators, so I'm hoping they will allow our

[WiX-users] (no subject)

2009-09-15 Thread Alex Ivanoff
From time to time I am getting the following dialog during install that never disappears and prevents installation from continuing: Please wait while installer finishes determining your disk space requirements. Return If I cancel the install and then restart it

Re: [WiX-users] replacing DialogRef with Dialog is not working

2009-09-15 Thread DerekLiang
By changing it to 'Order=3' seems to be working. Thanks for the hint. dl Pally Sandher wrote: I'd try changing Publish Dialog=LicenseAgreementDlg Control=Next Event=NewDialog Value=UserRegistrationDlg Order=2LicenseAccepted = 1/Publish To 'Order=1' as from looking at the WiX v3.0

Re: [WiX-users] Conditional installed based on REG_MULTI_SZ value

2009-09-15 Thread Wilson, Phil
I've not come across the Vista scripting issue that Blair mentioned, but AV programs are always looking for scripts that might be dangerous. In some cases I believe they even intercept calls to the scripting engines. This is typically the reason so many setups ask you to disable AV programs

[WiX-users] launching page localization

2009-09-15 Thread DE�K JAHN, G�bor
On Tue, 15 Sep 2009 19:59:35 +, Lian Jiang wrote: Lian, You probably mean the very first small message about the installation launching. This is displayed by the Windows Installer, not your installer. So, no matter how fully you have localized yours, this message will display in the

[WiX-users] launching page localization

2009-09-15 Thread Lian Jiang
Hi, I localized all strings used in my installer UI. The installer is a MUI based msi which means the same MSI can work on different locale machines and shows the strings in the corresponding locale. All dialogs works fine except that the launching page (the verify first dialog showing