Re: [WiX-users] light.exe : error LGHT0350

2012-02-10 Thread Ian Williams
Just a guess, but what is the Package/@InstallerVersion? That attribute should be the minimum Windows Installer number required - Major*100 + Minor. -Original Message- From: Maxim Kopeyka [mailto:m...@xtendx.com] Sent: Friday, February 10, 2012 8:52 AM To: wix-users@lists.sourceforge.ne

Re: [WiX-users] BuildInstaller.wixproj.FileList

2012-02-10 Thread Bourne, Kevin
This file is generated as part of executing a .wixproj. I found that since we use 2008 it uses win200x.targets. In here it set up the output path of this file and several others, some created by candle. The property name is IntermediateOutputPath. Once I overrode this property I was able to ge

Re: [WiX-users] Installing software on cluster computers

2012-02-10 Thread Hoover, Jacob
I would create a MSI package for a single computer and then use the deployment method of choice (group policy, SCCM, etc) to deploy the package to a group of computers. -Original Message- From: Uma Harano [mailto:uhar...@esri.com] Sent: Wednesday, February 08, 2012 11:34 PM To: General di

[WiX-users] light.exe : error LGHT0350

2012-02-10 Thread Maxim Kopeyka
Hi All, light.exe returns this error message: error LGHT0350 : The package being validated requires a higher version of Windows Installer than is installed on this machine. Validation cannot continue. However I have a latest version of installer: Windows ® Installer. V 5.0.7601.17514 What shou

[WiX-users] dark and custom UI

2012-02-10 Thread David McCabe
I'm having a few problems with dark. The MSI I'm attempting to decompile was built with WiX 3.5 and a modified form of WiXUI_InstallDir, by copying WiXUI_InstallDir.wxs into a section and modifying: ... Now, if I run this MSI through dark, I get errors of the form: x.msi : wa

[WiX-users] handling dynamic features in an installation

2012-02-10 Thread Sean Farrow
Hi All: I'm currently writing an installation which installs modules for another product. This product can have several different language folders under it's own folder in either all users/the current users settings. In this instance however I'm dealing with all users. In my features I have a fe

Re: [WiX-users] installer don't upgrade

2012-02-10 Thread Pally Sandher
Replacing your Product & Upgrade Id's with "MyGUID" isn't any help. Assuming the UpgradeCode matches the Upgrade Id, are you actually changing the Product Id between versions? Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **

[WiX-users] Disable customized UI cancel button during same custom actions

2012-02-10 Thread william lee
Hi, Is there a good way to disable the cancel button on a customized Wix UI, while processing some custom actions? I have schedule the customized progressdlg show up, then following by a immediate CA. I'd like to disable Cancel button on progressdlg during immediate CA is running, then enable the C

[WiX-users] Managed CustomActions not compiling with latest WiX 3.6 version

2012-02-10 Thread Kryschan
Hello, today I upgraded from WiX 3.6 Beta to version 3.6.2603.0. Now none of my managed custom actions is compileable any more. There are two problems: 1) the reference to Microsoft.Deployment.WindowsInstaller seems to be ok on the first glimpse but none of it's types is available and in the pr

Re: [WiX-users] installer don't upgrade

2012-02-10 Thread Mena Samy
here is the whole code : http://schemas.microsoft.com/wix/2006/wi"; xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension"; xmlns:util='http://schemas.microsoft.com/wix/UtilExtension' xmlns:sql='http://schemas.microsoft.com/wix/SqlExtension' xmlns:iis='http://schemas.mic

[WiX-users] BuildInstaller.wixproj.FileList

2012-02-10 Thread Bourne, Kevin
What generates the BuildInstaller.wixproj.FileList and all associated files in the same directory? Also what determines the folder to be debug or release? I had several TFS Build Types and I was assuming these were dropped and recreated each time we created an MSI, but today one had another one

Re: [WiX-users] installer don't upgrade

2012-02-10 Thread Pally Sandher
Paste your Product Element too as all that code depends on the Product being set up correctly. 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

Re: [WiX-users] registry search overridden when "Program Files" encountered

2012-02-10 Thread Pally Sandher
Then either make 2 packages & bootstrap them together so the correct one installs automatically for the user or don't use Windows Installer. 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

Re: [WiX-users] Error creating a bundle with a colon in the name: error LGHT0001: length cannot be less than zero

2012-02-10 Thread Sam Morris
On Thu, 09 Feb 2012 23:24:45 -0500, Bob Arnson wrote: > On 09-Feb-12 12:22, Sam Morris wrote: >> doesn't replace any colons already in the Prefix attribute, so later on >> the Binder gets confused when it splits the string on colon >> characters... > Yep, not good. > >> I can file this as a bug i

[WiX-users] installer don't upgrade

2012-02-10 Thread Mena Samy
here is my code : any help. Thanks, Mena S. Beshay Software Developer , Smart Valley -- Virtualization & Cloud Management Using Capacity Planning Cloud compu

Re: [WiX-users] Accessing the property values from deferred custom action created dynamically in other CA

2012-02-10 Thread Bojan Panjevic
I've managed to find the solution to accessing dynamic property value issue 1. Immediate action which reads properties to be moved from execution sequence to UI sequence 2. Actions in execution phase can access data from secure properties as stated in the question. If the properties ar