[WiX-users] Info 2888. Executing the Binary view failed

2010-03-03 Thread BSR PHANI
hi All, Can any one please help me out from the following issue? the issue is while launching my installer during licence dialog i could not able to see my licence in the dialog. but i verified, icould able to see all my licence.rtf files in the installer. when i digged into the logs i found the

Re: [WiX-users] Creating a Major Upgrade Patch

2010-03-03 Thread Bob Arnson
On 3/3/2010 10:50 AM, Pally Sandher wrote: > Moral of the story, be absolutely certain when you're changing Product > Codes (still can't believe I made such an error, hoist by ones own > petard). > A higher-level moral: Test serviceability before shipping; afterward is too late to fix whole c

Re: [WiX-users] Merge Module versioning, or equivalent

2010-03-03 Thread Bob Arnson
On 3/3/2010 4:14 PM, admiristra...@cox.net wrote: > Can someone please detail how Merge Module versioning is supposed to work? > There's no such thing. Merge modules are a collection of tables and rows that are merged into your .msi package, losing their identities in the process. All versio

Re: [WiX-users] "Pause" the PrepareDlg dialog?

2010-03-03 Thread Bob Arnson
On 3/2/2010 10:21 AM, Tabmow wrote: > I know the PrepareDlg pops up (modeless dialog) briefly at very > beginning, but is there a way to 'pause' it there or slow it down from > disappearing so fast? I want to check one thing out on the layout and it > disappears too fast for me to tell. >

Re: [WiX-users] heat.exe popping up a dialog

2010-03-03 Thread Bob Arnson
On 3/3/2010 5:02 AM, Jacek Pospychała wrote: > anyway, I'm still interested to learn, how the DLL is processed that it can > throw a popup.. > Self-reg runs code in the DLL; it can do anything, which is one of the reasons it's evil in an installer. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] Creating files from user input

2010-03-03 Thread Bob Arnson
On 3/1/2010 10:14 AM, Tim St. Clair wrote: > Custom config file, but it resembles an ini file without any tags/keys. > MSI supports .ini files and WiX additionally supports XML. No arbitrary text support, however. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] Pass selected Features as parameters to custom action

2010-03-03 Thread jnanneng
Costing operations haven't occurred at the time the CA is being scheduled so the feature state items are not set, yet. -- View this message in context: http://n2.nabble.com/Pass-selected-Features-as-parameters-to-custom-action-tp4657879p4671925.html Sent from the wix-users mailing list archive

[WiX-users] Merge Module versioning, or equivalent

2010-03-03 Thread admiristrator
Can someone please detail how Merge Module versioning is supposed to work? I cannot find guidance anywhere for Merge Module versioning (especially in WiX). I've seen WiXLibraries, so if that would work better, please tell me how. The scenario, which I believe is common: Certain shared files and

Re: [WiX-users] Auto-generated vs statically assigned GUIDs

2010-03-03 Thread Rajendra Magar
Mike, thank you very much! -Rajendra -Original Message- From: MikeR [mailto:michael.ru...@gmail.com] Sent: Wednesday, March 03, 2010 3:54 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Auto-generated vs statically assigned GUIDs We use auto-generated Product GUIDs alm

Re: [WiX-users] Auto-generated vs statically assigned GUIDs

2010-03-03 Thread MikeR
We use auto-generated Product GUIDs almost exclusively where I work. I really haven't found a downside to it, at least for our uses. As for detecting old products, it is still easy to detect them. Instead of looking them up using explicit ProductCodes you use the Upgrade table with the UpgradeC

Re: [WiX-users] Is it possible to install a 32-bit COM server DLL under ProgramFiles64Folder?

2010-03-03 Thread Bryan Reich
My advice would be to use the 32 bit install location, but if you really want to put it in the 64 bit location, you can author two components, one for the server and one for the class associated with the server. The server can be marked as 64 bit. The class component marked as x86. Mark the ele

Re: [WiX-users] File from local location

2010-03-03 Thread Wilson, Phil
Adding a hash is also recommended. Phil Wilson -Original Message- From: Sascha Beaumont [mailto:sascha.beaum...@gmail.com] Sent: Tuesday, March 02, 2010 8:00 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] File from local location If you do use a

Re: [WiX-users] COM+ registration for a 64 bit assembly.

2010-03-03 Thread Wilson, Phil
The registration data is different between 32-bit and 64-bit? If it's the same can you build a 32-bit version to extract the registration? Phil Wilson -Original Message- From: Dan Hoeger [mailto:dan.hoe...@microsoft.com] Sent: Wednesday, March 03, 2010 8:41 AM To: 'General discussion

[WiX-users] Auto-generated vs statically assigned GUIDs

2010-03-03 Thread Rajendra Magar
Hi, What are the pros/cons to using Id=* vs Id="someGUID" in the Product element? The only thing I can think of is that auto-generated GUIDs are a convenience. Are there any downsides to using them? For example, after a product is installed, would identifying it using a GUID be hard because the

Re: [WiX-users] Uninstall failure in full UI mode when per Machine installation is used

2010-03-03 Thread Mike Carlson (DEV DIV)
I believe you want to list these properties as the value of the built-in "SecureCustomProperties" property, so they will be set in the server context as well. Try adding something like this to your authoring: Thanks, Mike Carlson -Original Message- From: 万 毅 [mailto:overwhelmi

[WiX-users] COM+ registration for a 64 bit assembly.

2010-03-03 Thread Dan Hoeger
I was trying to use Heat.exe to generate the registry entries but this fails because heat is 32 bit and the assembly I'm trying to get the registry information for is 64 bit. What are we supposed to use to get the right registration entries for this? Also, I see references to a Complus extensio

Re: [WiX-users] Install file A xor file B w/ same name?

2010-03-03 Thread Nick Ramirez
Take a look at the description for ICE30: http://msdn.microsoft.com/en-us/library/aa368954(VS.85).aspx What I gather from it (and a preliminary test confirms it) is that if you have two files being installed to the same directory, then the only way to avoid an error is to add elements to both c

Re: [WiX-users] Install file A xor file B w/ same name?

2010-03-03 Thread JKLists
Pally, Yes, the file IDs are unique, reside in separate component groups, which are included in separate features. I'm rethinking what I'm doing at this point, as it's a similar problem to doing 32/64-bit installs. I'm thinking that I ought to tackle that before this to get my arms around the

Re: [WiX-users] Install file A xor file B w/ same name?

2010-03-03 Thread Pally Sandher
Are File Id's unique? I'm impressed you can even get as far as light running the ICE's if you have the same file in 2 components although quite how you managed that is beyond me. Code snippets would be a big help as would pasting the ICE errors from the build log. Your approach sounds fine from yo

Re: [WiX-users] Creating a Major Upgrade Patch

2010-03-03 Thread Pally Sandher
Got 1 MSP which updates all 3 previous versions using 2 Patch Family elements in my Patch Creation XML. It means having to create a hacked version of the 1.3 installer which has it's Product Code set to the same as v1.0 & v.1.1 (and a new Package Code generated) to use in the first Patch Family Ele

Re: [WiX-users] Nested installation of downloaded prerequisites

2010-03-03 Thread Michael Urman
The biggest problem with installing dependencies from your UI sequence is that they do not get called if your MSI is run with silent or basic UI. And then, since your MSI can't show any UI, it's harder for it to explain the failure. One hopes that if a person runs the MSI silently, they know how to

Re: [WiX-users] WIX Installer with CD Key verify

2010-03-03 Thread pmdarrow
salever.lee wrote: > > Does some one have an idea about cd-key verify during product installation > in UI? > The WiX tutorial has a section that details how to do this: http://www.tramontana.co.hu/wix/lesson3.php#3.3 If you're not comfortable with C++ custom actions, keep following the tutor

Re: [WiX-users] Property value not changing properly

2010-03-03 Thread Lisa Gracias
I had the same problem. Apparently, "Feature conditions that include properties set during the UI sequence won’t work as expected." Instead, use the AddLocal and Remove events. This should shed some light on the issue: http://www.joyofsetup.com/2007/05/30/feature-conditions-and-ui/ On Wed, Mar 3,

Re: [WiX-users] How do I: Generate a Complete Installer using Command-Line Tools

2010-03-03 Thread Lisa Gracias
What's the parent node of your product and package elements? On Wed, Mar 3, 2010 at 5:20 PM, Alec Taylor wrote: > Top of the Morning to you, > > I'm trying to generate a complete Installer using the command-line > tools. I have the directory structure. I want two choices, Custom & > Complete. Co

Re: [WiX-users] Preventing downgrades as a launch condition

2010-03-03 Thread Ragnar Rova
The product out there (and it has had many releases) did not set upgrade code but used a registry key in the past. So, do I not have a situation where UpgradeVersion tags would fail if I suddenly introduce them, and where I need to keep the old scheme in parallel? Specific about this product is th

[WiX-users] Property value not changing properly

2010-03-03 Thread Alex Wernecke
Hi, I have a problem with a condition that checks a property's value in order to set the LEVEL for a FEATURE Here is my code PROPERTY that is used by the RADIOBUTTONGROUP : I have tried leaving the value out, changing to different etc etc but compiler errors occur then... FE

Re: [WiX-users] Launch notepad in foreground

2010-03-03 Thread Lisa Gracias
What was weird was the inconsistency - sometimes it opened in the foreground and sometimes it didn't. I switched over from a type 50 custom action to a type 34 and used write (wordpad) instead of notepad. Seems to work now. Thanks for the help. Here's the code in case it helps anyone. WIXUI_EXI

[WiX-users] How do I: Generate a Complete Installer using Command-Line Tools

2010-03-03 Thread Alec Taylor
Top of the Morning to you, I'm trying to generate a complete Installer using the command-line tools. I have the directory structure. I want two choices, Custom & Complete. Complete I want to contain the 'Java' subdirectory, whilst Custom I'd like the user to be able to choose whether or not to inc

[WiX-users] Creating a Major Upgrade Patch

2010-03-03 Thread Pally Sandher
Hi, I've unfortunately made a bad decision a few months ago which is the cause of this query. We have an installer which we've released 3 versions of in the past. All cosmetic changes to UI etc, components were unchanged between all 3 versions. V1.0 & v1.1 have product code A. I (stupidly) released

Re: [WiX-users] How do I: Automatically generate file-listings of Directory Structure in WiX Format

2010-03-03 Thread Alec Taylor
Thanks, had a feeling it was something simple like that :) -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel pe

[WiX-users] If certain version (or higher) of Java's JDK is installed, continue, else download & install latest JDK

2010-03-03 Thread Alec Taylor
Top of the Morning to you, I've noticed in some Installers, eg; NSIS, it is possible to do what the subject is requesting. Is this possible with WiX? If so, what's the method? Please alleviate my confusion. Thank you so much, Alec Taylor --

Re: [WiX-users] How do I: Automatically generate file-listings of Directory Structure in WiX Format

2010-03-03 Thread Lisa Gracias
Use the Wix tool 'heat'. On Wed, Mar 3, 2010 at 4:25 PM, Alec Taylor wrote: > Top of the Morning to you, > > I've been using MakeMSI for almost half-a-year now, wrote a neat > little script to generate the file list for it. > > Is there a tool/script/program/command I can use to generate the > fi

Re: [WiX-users] Launch notepad in foreground

2010-03-03 Thread Alec Taylor
Or you could simply run on finish? On Wed, Mar 3, 2010 at 5:05 AM, Wilson, Phil wrote: > This is usually a losing game. > > http://blogs.msdn.com/oldnewthing/archive/2009/02/20/9435239.aspx plus > discussion > > Can you arrange to have the install complete while Notepad continues to run? > If y

[WiX-users] How do I: Automatically generate file-listings of Directory Structure in WiX Format

2010-03-03 Thread Alec Taylor
Top of the Morning to you, I've been using MakeMSI for almost half-a-year now, wrote a neat little script to generate the file list for it. Is there a tool/script/program/command I can use to generate the file-list from my directory structure in WiX's XML format? Please inform me if you know of

Re: [WiX-users] heat.exe popping up a dialog

2010-03-03 Thread Jacek Pospychała
ok, I figured out adding "-sreg" to heat command line does the trick. anyway, I'm still interested to learn, how the DLL is processed that it can throw a popup.. Jacek 2010/3/3 Jacek Pospychała > hi, > > I'm generating wxs file for Sun Java Runtime using heat and unfortunately > during this p

[WiX-users] Is it possible to install a 32-bit COM server DLL under ProgramFiles64Folder?

2010-03-03 Thread Paul Baker
We're currently building an MSI targeting the x64 platform. Most of our binaries are 64-bit, so we have placed each one into a 64-bit component under the ProgramFiles64Folder directory. However, we also need to install a 32-bit COM in-process server DLL. We're having issues because we'd ideally lik

Re: [WiX-users] COM+ Application Setup Identity Problem

2010-03-03 Thread pratikmehta9
Hi, · I am making an installer and I want to register and Install Com+ application and set the Identity to the Local System. I wrote the following code in my custom action for setting the identity. but It didn't work(It puts "nt authority\system" in the user field

[WiX-users] heat.exe popping up a dialog

2010-03-03 Thread Jacek Pospychała
hi, I'm generating wxs file for Sun Java Runtime using heat and unfortunately during this process, heat/jre popups an error dialog saying "Java Plug-in 1.6.0_18 is not installed properly". This happens for two DLL files inside JRE and turns our sleek fully automated process into manual nightmare :