Re: [WiX-users] Control conditional on installed components

2009-02-08 Thread Chris Ridd
On 8 Feb 2009, at 01:33, Rob Mensching wrote: Not sure. Have you tried following the Property value changes in the verbose log file to make sure it ends up what you want? I'm seeing lines like: AppSearch: Property: JDK15HOME, Signature: S_JDKHOME15 MSI (c) (74:D4) [13:19:54:468]: Note: 1:

[WiX-users] Question regarding pending bug 2508955

2009-02-08 Thread Eitan Behar
Hi, Please, do you have an estimation about the expected release date of bug 2508955 ? Currently it's on Pending state. Thanks, Eitan -- Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)

[WiX-users] CustomAction following specific CustomAction fails

2009-02-08 Thread jballe
I have a project using several customactions schduled during the UI as immediate. It actually works for almost everything but I have one issue left. In the UI the user can select to install a license file. I have a C++ customaction which opens the OpenFile dialog and sets it to a property. Later

[WiX-users] Error code 2189 for WixUI_InstallDir

2009-02-08 Thread Jonason
I have a question need your help, I added the UIRef Id=WixUI_InstallDir / to my wix project, wen I run the install msi, I met the issue Error code 2189, could anyone help me on that, thanks a lot. My Wix version is 3.0.4805.0, I use Votive in Visual studio. The source code: ?xml

[WiX-users] ??? in Japanese Setup UI

2009-02-08 Thread michael he
Experts, I follow the instructions at http://wix.sourceforge.net/manual-wix3/build_a_localized_version.htm and http://wix.sourceforge.net/manual-wix3/make_installer_localizable.htm to created a Japanese version of the setup package. But when I run the output MSI, the Japanese characters in the UI

Re: [WiX-users] ??? in Japanese Setup UI

2009-02-08 Thread Neil Sleightholm
From post here last week: I think you need to set Product/@Language and Package/@SummaryCodepage, you should be able to find the correct values here: http://msdn.microsoft.com/en-us/library/ms776260.aspx.; Neil -Original Message- From: michael he [mailto:michael...@gmail.com] Sent: 08

Re: [WiX-users] Error code 2189 for WixUI_InstallDir

2009-02-08 Thread Rob Mensching
Can you share out information from the verbose log file about the error. I don't immediately see anything wrong below. -Original Message- From: Jonason [mailto:lei.zhan...@hp.com] Sent: Sunday, February 08, 2009 01:59 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Error code

Re: [WiX-users] CustomAction following specific CustomAction fails

2009-02-08 Thread Rob Mensching
Are you compiling with UNICODE defined? If so I believe you have a buffer overrun here: ofn.nMaxFile = sizeof(szOriginalPath); You should use countof() instead of sizeof(). Otherwise, I'm not really sure what the issue is. Showing the part of the log file that has the error might be

Re: [WiX-users] Error code 2189 for WixUI_InstallDir

2009-02-08 Thread Jonason
Hi Rob, The error log is “Product: Integration Client -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2819. The arguments are: InstallDirDlg, Folder, ” Thanks! Best regards. Jonason Zhang

[WiX-users] Problem of CustomAction

2009-02-08 Thread Zhang, Lei (Jonason , TSG-GDCC-CQ)
I want to run Wrapper.exe (Java wrapper, exist in the installation package) after installation, it met issues: Product: Integration Client -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support

Re: [WiX-users] Problem of CustomAction

2009-02-08 Thread Rob Mensching
Sounds like your CustomAction code failed. You need to debug that to see why it failed (or returned non-zero). -Original Message- From: Zhang, Lei (Jonason , TSG-GDCC-CQ) [mailto:lei.zhan...@hp.com] Sent: Sunday, February 08, 2009 10:05 To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Error code 2189 for WixUI_InstallDir

2009-02-08 Thread Rob Mensching
WiX documentation for WixUI_InstallDir says you must define a property named WIXUI_INSTALLDIR. I don't see that below. Is it in another Fragment? -Original Message- From: Jonason [mailto:lei.zhan...@hp.com] Sent: Sunday, February 08, 2009 09:59 To: wix-users@lists.sourceforge.net

Re: [WiX-users] Control conditional on installed components

2009-02-08 Thread Bob Arnson
Chris Ridd wrote: Is the ?component notation in control conditions supported by all versions of Windows Installer? Yes, but it might not work when you cross from the UI to the execute and back to the UI. There's no doc to say either way. I'd suggest replicating the conditions rather than

Re: [WiX-users] Question regarding pending bug 2508955

2009-02-08 Thread Bob Arnson
Eitan Behar wrote: Please, do you have an estimation about the expected release date of bug 2508955 ? Currently it's on Pending state. If it's pending, it means the fix has been checked in, so check the next release after the status was set pending. For 2508955, it's 3.0.4917.0. --

Re: [WiX-users] Using German localization, but getting English

2009-02-08 Thread Bob Arnson
Zachary Young wrote: But I'm still seeing the English text. Check the .msi file Error table in Orca. Which strings are there? Also, why are you duplicating the text? WixUI already supports de-de strings. (It should work, I'm just curious.) -- sig://boB http://joyofsetup.com/

Re: [WiX-users] [Wix-Users] How to Kick Off Custom Event at the Start of a Dialog?

2009-02-08 Thread Bob Arnson
Olex wrote: How would I launch an Event / as soon as a dialog starts? MSI doesn't support that. -- sig://boB http://joyofsetup.com/ -- Create and Deploy Rich Internet Apps outside the browser with

Re: [WiX-users] Control conditional on installed components

2009-02-08 Thread Chris Ridd
On 8 Feb 2009, at 18:22, Bob Arnson wrote: Chris Ridd wrote: Is the ?component notation in control conditions supported by all versions of Windows Installer? Yes, but it might not work when you cross from the UI to the execute and back to the UI. There's no doc to say either way. I'd

Re: [WiX-users] Question regarding pending bug 2508955

2009-02-08 Thread Eitan Behar
I thought that it's part of the release only after it's closed. I will check ! Thanks. -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Sunday, February 08, 2009 8:31 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Question

Re: [WiX-users] ??? in Japanese Setup UI

2009-02-08 Thread michael he
Neil, Thanks a lot. Following your suggestions and specify code page in the wxl file did the trick. Thanks, Michael On Sun, Feb 8, 2009 at 11:26 PM, Neil Sleightholm n...@x2systems.comwrote: From post here last week: I think you need to set Product/@Language and Package/@SummaryCodepage,

[WiX-users] How to unscribe from this mailing group.

2009-02-08 Thread Chandra Vuppala
Hi, How to unsubscribe from this mailing group. I need to unsubscribe from this group. Thanks Regards, Chandrashekar vuppala M-9949469324 Oakton Global Technology Services Centre (India) Results Driven. When Business IT Matters IMPORTANT 1. This email and any attachments are

Re: [WiX-users] WiX-users Digest, Vol 33, Issue 34

2009-02-08 Thread Zhang, Lei (Jonason , TSG-GDCC-CQ)
Yes, I miss the property fragment: Property Id=WIXUI_INSTALLDIR Value=INSTALLDIR / UIRef Id=WixUI_InstallDir / Now, it's working fine, thanks a lot! Best regards. Jonason Zhang Integration Framework GDAS China | Application Service Engineering (ASE) TEL:

Re: [WiX-users] Problem of CustomAction

2009-02-08 Thread Jonason
Hi Rob, I found below error log with Wrapper.exe, it seems that it cannot handle the space, in the cmd consloe I can run the same command C:\Program Files\Hewlett-Packard\Integration Client\service\Wrapper.exe -i C:\Program Files\Hewlett-Packard\Integration Client\service\wrapper.conf . it

Re: [WiX-users] Close VS IDE While uninstalling

2009-02-08 Thread jagdish.sakhiya
Hi Phil, Can you advise me if there is any solution for this problem. Jagdish Sakhiya Wilson, Phil wrote: I don't think you should be doing this. Windows will just take of the situation. I have several versions of Visual Studio on my system, and if they are all running at the same time

Re: [WiX-users] Problem of CustomAction

2009-02-08 Thread Jonason
thanks Rob, I've resolve it by doing this: CustomAction Id='InstallService' Directory=SVC ExeCommand='[SVC]Wrapper.exe -i [SVC]wrapper.conf'/ Jonason wrote: Hi Rob, I found below error log with Wrapper.exe, it seems that it cannot handle the space, in the cmd consloe I can run the same

[WiX-users] Patch with msi input

2009-02-08 Thread sajid
I have followed the below example and works fine. http://blogs.msdn.com/pmarcu/archive/2007/06/28/sample-patch.aspx But unfortunately what I have is msi files, old and new. I want to create a patch. I use votive and build using TFS. When there is a new release, I get the new msi and want to

[WiX-users] Custom Action Woes -- I must be doing something stupid, but can't see it.

2009-02-08 Thread Anthony Wieser
I'm trying to run an exe I installed in my script at the end of the install. I've done the following: CustomAction Id=SetAgentNstPath Value=[#AgentInst] Property=AgentInstallerPath/CustomAction CustomAction Id=AgentInstallerAction Property=AgentInstallerPath Return=ignore ExeCommand