[WiX-users] Localization of MSI Installer

2009-09-03 Thread mahesh u
Hi All, I read about localizing a MSI installer using Wix. It seems like I need to localize the installer by using appropriate language .wxl file during MSI package creation time itself. So, Is there any way I can localize installer UI dynamically i.e. something like when Installer starts up dete

[WiX-users] [OT] unsubscribe frederico.apost...@vantyx.com?

2009-09-03 Thread Slide
*I keep getting the following message back when I send something to the list, should this person be unsubscribed? * * * *Não foi possível entregar a mensagem aos destinatários ou listas de distribuição seguintes:* frederico.apost...@vantyx.com O endereço de correio electrónico do destinatário nã

[WiX-users] Multiple Driver Packages

2009-09-03 Thread Slide
I have two drivers that I need to install, I currently have two inf files for them. Apparently DIFXAPP doesn't support this as I get the following error: DIFXAPP: ENTER: InstallDriverPackages() DIFXAPP: INFO: 'CustomActionData' property 'DIFxApp Version' is '2.1.1'. DIFXAPP: INFO: 'CustomActionDat

Re: [WiX-users] Allowing the user to override the install directory

2009-09-03 Thread Sascha Beaumont
Hi Nicholas, Looks like you're just missing the "ApplicationFolderName" definition. See the documentation under "WixUI_Advanced Dialog Set" for more details - I've included an example below that goes two levels deep under program files, the documentation shows an example for installing directly un

Re: [WiX-users] How to show different language license files?

2009-09-03 Thread Blair
>From Visual Studio: instead of using the Cultures property to make several MSIs with different EULAs, you need to instead either make different wixproj files (one for each license) or separate your "default" language build from your "localized" language builds and override the property you use to

Re: [WiX-users] Specifying source files

2009-09-03 Thread Blair
I think Andre is looking to use the "Identifying files by name and directory tree" method described in the "Specifying source files" topic in wix.chm. Andre, I suspect the problem has more to do with the way that your fragments are generated. I assume you used Heat.exe. What was your entire exact

Re: [WiX-users] Setting account info in merge module from MSI dialog

2009-09-03 Thread NateBank
OK I can't explain this one. I put in a property with a default value containing a backslash to see if it would leave that in there or remove it entirely, and... it worked. It filled in the StartName=DOMAIN\username and then appropriately bombed trying to install it with phony credentials. I or

Re: [WiX-users] Is it possible to read registry during execution?

2009-09-03 Thread Blair
Not without replacing the WriteRegistryValues built-in action. Even then it would be a severe violation of the component rules. What happens is that the costing actions determine which components will be installed. Each of the other actions then reference the action state of each component refe

Re: [WiX-users] Setting account info in merge module from MSI dialog

2009-09-03 Thread Blair
In the past I have seen installers where the user and domain names are in different dialogs. I don't know why you are seeing the issues you are with the UI and the "\" character. As to the service start issue - does the service use either anything you install into the GAC or any win32 SxS you inst

Re: [WiX-users] How to show different language license files?

2009-09-03 Thread Neil Sleightholm
It would be nice if it worked that way. What I had to do was create me own licence dialog (I simply copied the standard one) and then change the licence reference to: . Then in my wxl's I have code like this: Localisation\License.rtf Localisation\License_ja-jp.rtf This re

Re: [WiX-users] Extra Files in Patch

2009-09-03 Thread Svet Bonev
I am not aware of documentation or browsing tool for Wixpdb files. If you have .NET Framework programming experience you could write a tool for that. Wixpdb files can be manipulated through the Pdb and related classes in wix.dll. Fragments (or sections) are the smallest unit of granularity in W

Re: [WiX-users] Setting account info in merge module from MSI dialog

2009-09-03 Thread NateBank
For now I'm going forward on the assumption that we won't be shipping the merge modules, and I came to a similar conclusion last night; I have since changed all the merge modules to wixlibs, and I'm making progress... But I have run into new and exciting roadblocks. The first, which I admit I

Re: [WiX-users] Extra Files in Patch

2009-09-03 Thread JWalker
Thank you for the response and the helpful suggestions. Is there any documentation of the internal structure of the wixpdb file (or an Orca-like   tool for editing it)? Also I was wondering, what is the point of having component refs in the PatchFamily element? I originally thought they were for

[WiX-users] Is it possible to read registry during execution?

2009-09-03 Thread André Werlang
Hi! I have a dozen components such that for each it can be written on registry the same key entry, concatenating with the old value. But, I've just found that RegistrySearch is made during AppSearch, which happens to be the first action in execute sequence, so my approach didn't work. Can it be m

Re: [WiX-users] Setting account info in merge module from MSI dialog

2009-09-03 Thread Blair
Are you intending to ship the merge modules to others, or are you simply using them as a "library" for your own use? If the latter, I would recommend wixlibs instead of merge modules. If the former, you have to explicitly author the merge modules to support "configuration" and/or explicitly mark s

Re: [WiX-users] Asynch install process

2009-09-03 Thread Chad Petersen
If you check out the @Return attribute of the Custom Action element there is an asyncNoWait type. Indicates that the custom action will run asynchronously and execution may continue after the installer terminates. -Original Message- From: phillip_sid...@dellteam.com [mailto:phillip_sid...

Re: [WiX-users] Allowing the user to override the install directory

2009-09-03 Thread Chad Petersen
We let the user modify the target directory in our UI, but I find I need to use a type 35 Custom Action (no external code involved, though) to alter the property being used. Also, on an upgrade we present the user with the same directory they chose the first time around, but they can alter it to do

[WiX-users] Asynch install process

2009-09-03 Thread Phillip_Sidari
Is there a way with WiX to initiate a child process at/near the end of an installation that does not wait for child process to return before existing the install. Specifically I want to call the aspnet_compiler to JIT some websites but I don't want the installer to wait 60-90 sec for this proce

Re: [WiX-users] Allowing the user to override the install directory

2009-09-03 Thread Blair
Directories are in a hierarchy, starting with TARGETDIR. In CostFinalize, they actual paths to the directories are set (and become Properties with the same name if the property didn't already exist). Here is how they are built: When CostFinalize runs, if a property with the same "Id" (to use WiX t

Re: [WiX-users] How to show different language license files?

2009-09-03 Thread Blair
Let me retract my solution. At one time they were in the same namespace, but it appears that doesn't work now. Are you building from VS/MSBuild or from "command-line" (such as makefile/nant/etc.)? -Original Message- From: Blair [mailto:os...@live.com] Sent: Thursday, September 03, 2009 9

Re: [WiX-users] WIX Upgrade

2009-09-03 Thread Blair
For most of us, if we are not intending to support patching at this time, "always-major" upgrades are the easiest route, and the easiest way to do that is to set produ...@id="*". You also have to code the Upgrade element and determine where to sequence RemoveExistingProducts (Hint: if you follow th

[WiX-users] Allowing the user to override the install directory

2009-09-03 Thread Nicholas Makin
Please excuse my frustration but I am finding WiX to be neigh worthless - why? Because there is a plethora of information by half of it is no good and the other half points you to the mysterious MSI documentation which is wonderful if one could figure out how that translates to WiX. All I want

Re: [WiX-users] WIX Upgrade

2009-09-03 Thread Alexander Shevchuk (Volt)
In Wix help file read "How To Guides"\"Updates"\How To: Implement a Major Upgrade In Your Installer" -Original Message- From: Anu Dev [mailto:queryl...@yahoo.com] Sent: Thursday, September 03, 2009 9:49 AM To: WIX Subject: [WiX-users] WIX Upgrade Hi   Wanted to know if anyone of you

Re: [WiX-users] How to show different language license files?

2009-09-03 Thread Blair
Your license files MUST be RTF, not plain text. WixVariables and WiX Localization values (even though they are accessed using two different namespaces: var & loc) actually occupy the same namespace. So, here is what you do: In your .wxl files, create a string called WixUILicenseRtf. Remove the en

[WiX-users] WIX Upgrade

2009-09-03 Thread Anu Dev
Hi   Wanted to know if anyone of you have worked on the following scenario.   1.    Application is already installed on the client machine and he wants to upgrade to a new version. 2.    During this process, user is prompted to uninstall prior version and install the new version.   Rather than p

Re: [WiX-users] Uninstalling Virtual Directories

2009-09-03 Thread Alexander Shevchuk (Volt)
Hi Jaspreet, Move your default web site declaration out of to . Alex -Original Message- From: Jaspreet Nabha [mailto:jaspreet.na...@headstrong.com] Sent: Thursday, September 03, 2009 12:50 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Uninstalling Virtual Directories Hi

Re: [WiX-users] Specifying source files

2009-09-03 Thread Chris Lord
The source has no affect on the location the file is placed when it is installed on the target machine. That is set by the directory structure you have defined with the directory components. The source should point to the file location of CID_Demo.pdf on your machine that is to be included in

Re: [WiX-users] Extra Files in Patch

2009-09-03 Thread Svet Bonev
The granularity at which WiX v3 patching operates is a Fragment. This means that any updated files authored in that Fragment will be packaged into the patch. When you say the files have not changed, I assume you mean that you haven't changed their source code. But most likely they got new file

Re: [WiX-users] Registry keys in merge modules

2009-09-03 Thread Uma Harano
Let me re-phrase my question - Is there anyway a .reg file can be converted into a merge module project using WiX 3.0? Thanks! Uma- -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Sunday, August 30, 2009 10:20 AM To: General discussion for Windows Installer XML too

[WiX-users] Specifying source files

2009-09-03 Thread André Werlang
Hi. I'm generating a .wxs for a directory structure called wPDF just below base input path. i.e. + SourceDir | +--+ wPDF | +-- CID_Demo.pdf ... It is generated a fragment like this: ... Light isn

[WiX-users] How to show different language license files?

2009-09-03 Thread Jiang, Chunyan (GE Healthcare)
Hi Wix-users, I want to show the license text in the license dialog. According to the example, And in .wixproj, define: licenseRtf=D:\Work\Program Doc\Wix\src\ext\UIExtension\wixlib\license.rtf; Then the license dialog can show the license text. However, if I want to show license as d

Re: [WiX-users] Setting Property Values After Custom Dialog

2009-09-03 Thread Sebastian Brand (Instyler Software)
Can you post some wix code? I'd set the other properties when the user clicks Next on that custom dialog with the radio buttons. Use the element at the Next control. Best regards, Sebastian Brand Instyler Setup - Creating WiX-based MSI installations, elegantly. http://www.instyler.com -

[WiX-users] Uninstalling Virtual Directories

2009-09-03 Thread Jaspreet Nabha
Hi All, I am facing a problem while uninstalling the package. I have created some virtual directories in wxs. But when i uninstall the package, it is removing Default Web Site also. Which in turns remove all the virtual directories from the server. Again ig I install the package I is creating de