Re: [WiX-users] Customizing WiXUIEntension

2010-05-20 Thread Andy.Kruger
I'm trying to recompile WiXUIExtension using VS2005, it gives msbuild related errors.(looks like) I use ANT for the build automation. What should I do to get the recompile working??? Also I'm not able to open Wix.sln or any other solution that came with WiX 3.0 in VS2005, it says the solution is

[WiX-users] MSI validation on Windows Server 2008

2010-05-20 Thread vunder
I have an automatic project build on Windows Server 2008 and could not validate msi-package. light.exe/smoke.exe returns an exception "Could not access to Windows Installed Service". I found some messages how this can be solved, but it does not take any affect. I tried to change registry value (HK

[WiX-users] "ResolveWixReferences" task was not found?

2010-05-20 Thread Andrew Hammond
I created a very simple WIX project, added a reference to WixUtilExtension and then tried to build it. I'm getting the following error: The "ResolveWixReferences" task was not found. Check the following: 1.) The name of the task in the project file is the same as the name of the task class. 2.) Th

Re: [WiX-users] cannot respond to a post

2010-05-20 Thread Kurt Jensen
I've been trying for 3 hours to post a response to your last message about the msbuild command line problem. Every post comes back with "message has implicit destination". I cannot see anything wrong according to your link. I'll keep trying the response... :( -Original Message- From

Re: [WiX-users] cannot respond to a post

2010-05-20 Thread Castro, Edwin G. (Hillsboro)
Also found this: Message has implicit destination means that the name of the list must appear in either the To; or Cc: header of a message sent to your list. Should a message be held for this reason, the list address appears only in the Bcc: field of the message or the message was sent to a lis

Re: [WiX-users] cannot respond to a post

2010-05-20 Thread Castro, Edwin G. (Hillsboro)
FYI: I found this: What does "message has implicit destination" mean? http://wiki.list.org/pages/viewpage.action?pageId=4030676 Edwin G. Castro Software Developer - Staff Electronic Banking Services Fiserv Office: 503-746-0643 Fax: 503-617-0291 www.fiserv.com Please consider the environment be

Re: [WiX-users] cannot respond to a post

2010-05-20 Thread Castro, Edwin G. (Hillsboro)
I've been getting messages in the "cannot respond to a post" thread. I'm not familiar with the list moderator approval message. :( Edwin G. Castro Software Developer - Staff Electronic Banking Services Fiserv Office: 503-746-0643 Fax: 503-617-0291 www.fiserv.com Please consider the environment

Re: [WiX-users] cannot respond to a post

2010-05-20 Thread Kurt Jensen
I take that back. I was trying to respond to a post when this problem occurred. After thinking that it was the email address, it's still not working. I posted another response to a different post and now it is hung up " until the list moderator can review it for approval". Has the list gone cra

Re: [WiX-users] cannot respond to a post

2010-05-20 Thread Kurt Jensen
never mind...I guess...it worked sending to wix-users@lists.sourceforge.net but did not work replying to "General discussion for Windows Installer XML toolset " -Original Message- From: Kurt Jensen [mailto:kurt.jen...@ophir-spiricon.com] Sent: Thursday, May 20, 2010 2:24 PM To: wix-user

[WiX-users] cannot respond to a post

2010-05-20 Thread Kurt Jensen
I've tried multiple times to respond to a post, RE: [WiX-users] msbuild command line parameters, without success. I even deleted all the previous stuff being carried along. But every time I get a message saying that the message "Is being held until the list moderator can review it for approval" b

Re: [WiX-users] How to check whether the empty key exists in theregistry

2010-05-20 Thread Igor Paniushkin
Hm... interesting question. I never tried it myself, but after some googling I found next answer: http://stackoverflow.com/questions/1327203/in-wix-how-do-i-test-for-the-existence-of-a-registry-key-not-value-for-oracle-o/ Most probably is the best way to do that is to write custom action. You ca

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-20 Thread Wilson, Phil
I don't know the details because I've never used that, but the code is clearly taking two paths, one for immediate and one for deferred, so it seems to me you need to have two calls to that custom action, one immediate and one deferred, because that's the general architecture of the mechanism.

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-20 Thread Velu
Hi Willson, Thanks for your reply. Can you please explain a little bit more here ?. I need to have two custom action with Immediate and Deferred Whether that WordPress Managed Custom Action is correct to display the progress Bar ? Pls assits me on this Thanks, Velu -- View this message in c

Re: [WiX-users] msbuild command line parameters

2010-05-20 Thread Castro, Edwin G. (Hillsboro)
Sweet! That write-up was extremely useful! Steps 1-3 gave me the context I needed. Thank you so very much! I was probably being dense. The value passed in from tfsbuild.proj was getting overridden by the definition in the *.wixproj which is why you got the results you got in 3). In MSBuild the

Re: [WiX-users] Show the ProgressBar while Running the Custom Action

2010-05-20 Thread Wilson, Phil
That wordpress code seems (reasonably enough!) to be based on this: http://msdn.microsoft.com/en-us/library/aa367525(VS.85).aspx where it says that both an immediate and deferred custom actions are needed for this. The code at that wordpress link seems to have both required pieces of code in

Re: [WiX-users] msbuild command line parameters

2010-05-20 Thread Castro, Edwin G. (Hillsboro)
My suspicion is that there is some oddness in the way you are defining properties in tfsbuild.proj, how they are passed to the solution, and how the projects themselves consume those properties. In MSBuild you need to be explicit about which properties are passed to whom and values can get over

[WiX-users] How to check whether the empty key exists in the registry

2010-05-20 Thread Илья Сербис
Does anyone know how to check whether the key exists in the registry. The key doesn't contain any named values. It's empty. I've been trying to use RegistrySearch. According to http://msdn.microsoft.com/en-us/library/aa371171(VS.85).aspx if value of Name is null "then the value from the key's

Re: [WiX-users] UI Edit Box not updating

2010-05-20 Thread Matt Johnson
Hi Peter, Thank you very much! The twin dialog works perfectly! IMHO - Since this is a limitation with MSI, this is probably something that should be highlighted in the Msi or Wix docs. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeameri

Re: [WiX-users] msbuild command line parameters

2010-05-20 Thread Kurt Jensen
OK. I have a much easier repro scenario. I tried simply running msbuild on my tfsbuild.proj (after all this time I did not know you could do that...) And it failed in exactly the same way - DefineConstants in the wixproj are not included on the command line to candle. Unless a fix is coming

Re: [WiX-users] msbuild command line parameters

2010-05-20 Thread Kurt Jensen
Maybe someone should TFS again. Seems pretty obvious that part is broken. My tfsbuild.proj is pretty standard. I've only included the relevant sections. DefineConstants=BG_STANDARD; OutDir=$(TeamBuildOutDir)BG_STANDARD\

Re: [WiX-users] Customizing WiXUIEntension

2010-05-20 Thread Pally Sandher
You'd need to recompile it. Easier way -> http://neilsleightholm.blogspot.com/2008/08/customised-uis-for-wix.html Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the ** Integrate

[WiX-users] Customizing WiXUIEntension

2010-05-20 Thread Andy.Kruger
I'm currently migrating to WiX 3.0 from WiX 2.0. Regarding customizing the UI library, after making the required modifications to the dialogs under src\ext\UIExtension\wixlib\, how do i make it part of the WiXUIEntension.dll against the which light.exe is run. - Andy MSI Developer Schne

Re: [WiX-users] UI Edit Box not updating

2010-05-20 Thread Peter Shirtcliffe
Its a long time since I did any MSI UI. This is my old code. Perhaps this will shed some light on your problem. Its wix 2 but you should be able to convert if necessary. >From dialog A

Re: [WiX-users] UI Edit Box not updating

2010-05-20 Thread Romeo S.
Hi Peter, I'm had the same problem as Matt, I tried the twin dialog hack but most of my dialogs has checkbox, when I clone my dialogs, it complains about "The primary key 'PROPERTY1' is duplicated in table 'CheckBox'." Is there a workaround for this? Btw, it's working when there's no checkbox in

Re: [WiX-users] Votive v3 download location

2010-05-20 Thread Yan Sklyarenko
It's inside wix3.msi. -- Yan -Original Message- From: Andy.Kruger [mailto:appr...@gmail.com] Sent: Thursday, May 20, 2010 13:17 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Votive v3 download location Can anybody give me the correct download location for votive v3? I can'

[WiX-users] Votive v3 download location

2010-05-20 Thread Andy.Kruger
Can anybody give me the correct download location for votive v3? I can't find it as a separate .msi on the sourceforge website - Andy MSI Developer Schneider Electric -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Votive-v3-download-locati

Re: [WiX-users] RegistrySearch converts value data

2010-05-20 Thread Jimmie Eriksson
Ok, so I thought that I provide the solution of how to use the StringTools.dll contained in the msiext found http://msiext.codeplex.com/releases/view/39468 as I myself spend to much time to get it to work!! and maybe this could help someone else.. Put the StringTools.dll in the same folder as the .

Re: [WiX-users] Issues for migrating Wix 2.0 to Wix 3.0

2010-05-20 Thread Pally Sandher
It does, I just tested it in WiX v3.0.5419.0. Works absolutely fine for DLL's & OCX's which export the DLLRegisterServer function. My guess is his DLL doesn't or it has dependencies which can't be loaded by heat.exe when it tries to harvest it. If your DLL can't be registered with regsvr32.exe /s

Re: [WiX-users] UI Edit Box not updating

2010-05-20 Thread Peter Shirtcliffe
Its not a bug but rather a limitation of MSI UI. Dialogs do not redraw when you set a property in a custom action. The usual workaround is to use the "double dialog" hack. See these threads for details. http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Combobox-n ot-refreshing-td1511419

Re: [WiX-users] Patch

2010-05-20 Thread Peter Shirtcliffe
You can apply several patches at once with msiexec. For example: msiexec /update patch1.msp;patch2.msp;patch3.msp -Original Message- From: Carolina Zuqueto Amaral [mailto:carolina.ama...@conv.com.br] Sent: 19 May 2010 22:42 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Patch

Re: [WiX-users] How to run a Custom Action during uninstall only?

2010-05-20 Thread Xmun
Hi Pally, Thanks - I tried something similar which didn't work. Let me try again. Simon -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-run-a-Custom-Action-during-uninstall-only-tp5075831p5078570.html Sent from the wix-users mailing list a