Re: [WiX-users] Running 64-bit executables silently

2009-03-17 Thread sandun css
Hi Michael, I tested with your code. But the installer failed. found following lines in the log. CAQuietExec64: Error 0x80070057: failed to get command line data CAQuietExec64: Error 0x80070057: failed to get Command Line Then I modified it as follows, CustomAction

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread Romeo Salayo Jr.
Hi, I having the same problem, I need to create a 32 and 64bit installers automatically with a single source file. The problem is that one fragment of our source was generated by heat.exe every time we build. The question is, is it possible to generate 64bit component using heat so that we can

Re: [WiX-users] Running a custom action on a push-button click

2009-03-17 Thread Romeo Salayo Jr.
Hi Sudripta, In you situation, just publish the custom action for your next button like this: Publish Dialog=DialogName Control=Next Event=DoAction Value=YourCustomAction Order=11/Publish Publish Dialog=DialogName Control=Next Event=SpawnDialog Value=DialogName2 Order=2ValidationSuccess =

Re: [WiX-users] How do I check UserName and Password

2009-03-17 Thread Romeo Salayo Jr.
Hi SMR, Try putting a Order attribute in you Publish like this: Publish Event=DoAction Value=CheckUser.Property Order=11/Publish Publish Event=DoAction Value=CheckUser Order=21/Publish Publish Event=SpawnWaitDialog Value=InvalidUserDlg Order=3![CDATA[ VALIDATEUSER 1]]/Publish Publish

Re: [WiX-users] Running 64-bit executables silently

2009-03-17 Thread Michael
Hi Sandun, OK, thats fine. Its seems to be error in execution of command. First, try to execute same command in command prompt. If it fine, consider operating system, application (32bit/64bit). -SMR sandun css wrote: Hi Michael, I tested with your code. But the installer failed. found

Re: [WiX-users] System reboot and WinLogo requirements

2009-03-17 Thread Yan Sklyarenko
Thanks for suggestion, Bob. But there are still some cases when I don't know how to ask user to free the file before actually performing the file remove attempt and thus reboot schedule. For instance, if aspnet_wp locks the *.db files, according to Windows Installer reboot behavior

[WiX-users] Wixlibs - custom tables merging

2009-03-17 Thread Maciej Oszutowski
Hi, I am currently trying to convert some of my merge modules to wixlibs. The problem I found today is: I have few mergemodules that have common custom table defined. It works perfectly, all tables are merged together build time and resulting msi has single table containing rows from all merged

[WiX-users] Support for conditional bootstrapper pre-requisites - Burn/dotNetInstaller/fw bootstrapper/other?

2009-03-17 Thread Holmgren Mathias
Our application install scenario contains conditional pre-requisites. What bootstrappers can do this today? Basically, we want a bootstrapper that can support this scenario: 1A) If App1 is installed, install X1 (matching addon MSI package to App1) 1B) If App1 is not installed, don't install X1

[WiX-users] How to move progress bar during custom action

2009-03-17 Thread Michael
Hi, I have a custom action after 'InstallFinalize' which runs an EXE. EXE will execute for long time. During that period, progress bar is not moving. Progress is being empty. Give me some suggestions about how to show progress bar during custom action. Thanks, -SMR

Re: [WiX-users] How do I check UserName and Password

2009-03-17 Thread Michael
Hi Romeo, Thanks for your suggestion. But, Still I'm in same case. Any more suggestions welcome. -SMR Romeo Salayo Jr. wrote: Hi SMR, Try putting a Order attribute in you Publish like this: Publish Event=DoAction Value=CheckUser.Property Order=11/Publish Publish Event=DoAction

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread troy hostetter
Getting a type mismatch on this: Win64=$(loc.Win64) Here's the error: Error407The Component/@Win64 attribute's value, '$(loc.Win64)', is not a legal yes/no value. The only legal values are 'no' and 'yes'. - Troy On Mon, Mar 16, 2009 at 8:53 PM, Bob Arnson b...@joyofsetup.com wrote:

[WiX-users] Ram size checking

2009-03-17 Thread Hukumchand Shah
Hi All, I want to check Ram size before i start actual installation same as free disk space checking. I am new to wix. Does anyone knows, how to do this? Please help it's urgent. Thanks regards, Hukum -- Apps built

[WiX-users] Get currently building WiX culture in MSBuild

2009-03-17 Thread Alastair Smith
Hi there I'm building an installer for multiple cultures. Currently, the EULA is specified using the WixVariables element in the wixproj file as follows: WixVariablesWixUILicenseRtf=path\to\en\EULA.rtf/WixVariables What I'd like to do is replace the en bit of the path with some variable that

[WiX-users] ARPNOREPAIR being over-ridden

2009-03-17 Thread Alastair Smith
Hi there My installer references some items from the WiX Mondo UI, but doesn't actually use any of the Mondo UI dialogs, etc. This is to get standard localised strings for things like error messages, button captions, etc. However, Mondo appears to define ARPNOREPAIR true, hiding the Repair

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread Christopher Karper
If you're using Votive, you can just omit this attribute entirely and just use the x86/x64 configurations to build... On Tue, Mar 17, 2009 at 9:29 AM, troy hostetter troy.hostet...@gmail.comwrote: Getting a type mismatch on this: Win64=$(loc.Win64) Here's the error: Error407The

Re: [WiX-users] Ram size checking

2009-03-17 Thread Holmgren Mathias
I want to check Ram size before i start actual installation same as free disk space checking. Check out launch conditions. Like this Condition Message=Installing $(var.ApplicationFullName) requires at least 512 Mb primary memory. PhysicalMemory = 512 /Condition

Re: [WiX-users] Support for conditional bootstrapper pre-requisites - Burn/dotNetInstaller/fw bootstrapper/other?

2009-03-17 Thread Don Benson
On Tue, Mar 17, 2009 at 8:29 AM, Holmgren Mathias mathias.holmg...@six.sewrote: 1A) If App1 is installed, install X1 (matching addon MSI package to App1) 1B) If App1 is not installed, don't install X1 1C) If App1 and X1 are both installed already, do nothing (done already) 2) Start our own

Re: [WiX-users] How to move progress bar during custom action

2009-03-17 Thread Don Benson
On Tue, Mar 17, 2009 at 8:51 AM, Michael mich...@gnhsoft.com wrote: I have a custom action after 'InstallFinalize' which runs an EXE. EXE will execute for long time. During that period, progress bar is not moving. Progress is being empty. Give me some suggestions about how to show progress

Re: [WiX-users] Get currently building WiX culture in MSBuild

2009-03-17 Thread Don Benson
I recently submitted a feature request on the bug tracker for this kind of variable. On Tue, Mar 17, 2009 at 9:40 AM, Alastair Smith alastair.sm...@citrix.comwrote: Hi there I'm building an installer for multiple cultures. Currently, the EULA is specified using the WixVariables element in

Re: [WiX-users] Support for conditional bootstrapper pre-requisites -Burn/dotNetInstaller/fw bootstrapper/other?

2009-03-17 Thread David Watson
The dotnetinstaller's checks are designed to check for the item you are installing but you can have multiple checks, but that still wouldn't solve your problem. You can of course download the source code for it and tweak it. Dave -Original Message- From: Holmgren Mathias

Re: [WiX-users] Using util extension in include file.

2009-03-17 Thread brianp
Bob Arnson-6 wrote: Jason Person (TEKsystems) wrote: Hi, I am having a problem using util:XmlConfig from an include file, it seems like the namespace declaration isn't seen by the stuff in the include file even though I declare it in the wix tag for the main file. You also need to

Re: [WiX-users] Using util extension in include file.

2009-03-17 Thread brianp
Bob Arnson-6 wrote: Jason Person (TEKsystems) wrote: Hi, I am having a problem using util:XmlConfig from an include file, it seems like the namespace declaration isn't seen by the stuff in the include file even though I declare it in the wix tag for the main file. You also need to

Re: [WiX-users] How to move progress bar during custom action

2009-03-17 Thread Richard
In article 5a8c7ab90903170713j46a90ffeiae458e6fa1b1a...@mail.gmail.com, Don Benson dbenso...@gmail.com writes: The Windows Installer documentation seems to indicate that the progress bar does not work after InstallFinalize. Check out the following, link, especially step 9.

Re: [WiX-users] System reboot and WinLogo requirements

2009-03-17 Thread Bob Arnson
Yan Sklyarenko wrote: But there are still some cases when I don't know how to ask user to free the file before actually performing the file remove attempt and thus reboot schedule. For instance, if aspnet_wp locks the *.db files, according to Windows Installer reboot behavior

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread Bob Arnson
Romeo Salayo Jr. wrote: I having the same problem, I need to create a 32 and 64bit installers automatically with a single source file. The problem is that one fragment of our source was generated by heat.exe every time we build. The question is, is it possible to generate 64bit component using

Re: [WiX-users] ARPNOREPAIR being over-ridden

2009-03-17 Thread Bob Arnson
Alastair Smith wrote: However, Mondo appears to define ARPNOREPAIR true, It doesn't. It refers to it but doesn't define a value. -- sig://boB http://joyofsetup.com/ -- Apps built with the Adobe(R) Flex(R) framework

[WiX-users] (no subject)

2009-03-17 Thread Henk Roos
HI there, I would like to know something about the Visual Studio Wix projects. If I specifically state in the product wix file that I am building for a 64 bit platform by adding Platform=x64 to the Package element, does it matter then whether the project is set to x86 or x64 in the visual

[WiX-users] Showing a hyperlink on a dialog

2009-03-17 Thread Sudripta Nandy (Sarangsoft Corporation)
I need to show a hyperlink control on one of my setup dialog. The setup program should be compatible to Win XP and higher. Seems Win XP and Win VISTA (SP1) don't have MSI version 5.0 where the hyperlink control is supported. So, what is my best way to be able to show a hyperlink control. It

[WiX-users] votive causing massive pauses in Visual Studio

2009-03-17 Thread Adam Langley
Hi, We are using WiX in solutions with 15-20 projects, including 4 WiX projects. On 2 of our machines, one is XP and one is Vista32, Visual Studio hogs 50% of the CPU for about 4 minutes after startup, then on the Vista machine the text editor pauses for about a second on every operation (in

Re: [WiX-users] How to GAC .Net assemblies the correct way?

2009-03-17 Thread lesterbangs
Using WiX 3.0.5106.0, I'm not seeing this behavior; Inside a fragment, I am specifying file entries under a directory ref like so: DirectoryRef Id=MyFolder Component Id=MyAssembly File Id=FirstAssemblyName.dll KeyPath=yes Source=$(var.BuildSourcePath)\FirstAssemblyName.dll Assembly=.net

Re: [WiX-users] fold not being removed on uninstall: sporadic

2009-03-17 Thread Jim Williams
I'm just grasping at straws here, but could it be that in the instances where the folder doesn't get removed, that the folder was still considered in use from the process that did the file deletions for the CA, and the folder removal is attempted before the CA process was completely ended and

[WiX-users] Making text control respond to mouse-clicks

2009-03-17 Thread Sudripta Nandy (Sarangsoft Corporation)
Is there any way by which I can make a text control on a dialog respond to mouse-clicks i.e. can I get any event during mouse-click of a text control? Also, is it possible to make a push-button appear flat and without a border? Thanks. Sudripta.

Re: [WiX-users] Making text control respond to mouse-clicks

2009-03-17 Thread Richard
In article 4141413b6d8f4a45816b84ece8faf1a94086f37...@na-exmsg-c121.redmond.corp.microsoft.com, Sudripta Nandy (Sarangsoft Corporation) v-su...@microsoft.com writes: Is there any way by which I can make a text control on a dialog respond to mouse-clicks No i.e. can I get any event

Re: [WiX-users] fold not being removed on uninstall: sporadic

2009-03-17 Thread Adam Langley
Hey, Im grasping at staws too, so its all I can ask... Should this really be a problem if the CA is running in 'check' mode (synchronous)? Also, wouldn't this consistently fail to remove the folder if it were a sequencing problem? I'm not sure if I can put the CA invocation earlier in the