Re: [WiX-users] CheckBox Value via Custom Action

2012-05-15 Thread Ravi Raj
I have done this thing: Property Id=ENABLEVIRTUALIZATION Secure=yes /CustomAction Id=CA_SetProperty_EV Property=ENABLEVIRTUALIZATION Value=0 Execute=firstSequence / InstallExecuteSequence Custom Action=CA_SetProperty_EV Before=AppSearchNOT Installed AND NOT

[WiX-users] How to disable WIXUI_EXITDIALOGOPTIONALCHECKBOX in exit dialog according to the condition?

2012-05-15 Thread tzleon
Hi, My install package contains one feature that require lanuch after install finished, and it's an optional feature. So is it possible to disable WIXUI_EXITDIALOGOPTIONALCHECKBOX when the feature not installed? -- View this message in context:

[WiX-users] The feature-action state value not correct after CostFinalize stage in Wix 3.6

2012-05-15 Thread tzleon
Accroding to the msdn spec http://msdn.microsoft.com/en-us/library/aa368012.aspx, I could get feature-action value after CostFinalize stage, but in Wix 3.6 I tried to add MyFeature value to condition as below: SetProperty Id=WIXUI_EXITDIALOGOPTIONALCHECKBOX Value=1 After=CostFinalize/SetProperty

[WiX-users] MSI projects fail to build after upgrading to v3.6.2914.0

2012-05-15 Thread Pally Sandher
Upgraded to v3.6.2914.0 from v3.6.2907.0. None of my MSI projects build anymore (7 in the same solution, all fail but my one wixlib in the solution still builds). light.exe(0,0): error LGHT0001: Cannot set column 'Value' with a null value because this is a required field.

Re: [WiX-users] Signing the burn bootstrapper

2012-05-15 Thread Bruce Cran
On 24/01/2012 20:09, Paul Fazio wrote: I'm trying to get bundle signing to work and I'm having some issues. I've addedSignOutputtrue/SignOutput, as mentioned. I've also overridden SignBundleEngine and SignBundle, which appear to be working because burn.exe and my bundle do have digital

[WiX-users] Deserialization of wxs file

2012-05-15 Thread Ilana Girshevich
Hello, I have some automation to fill product.wxs file with fieatures/components.This file has also some ?include some.wxi? When I deserialize our product.wxs file(using wix schema) all the include parts are lost.   Thank you

Re: [WiX-users] Error 2343

2012-05-15 Thread Pally Sandher
ICE errors aren't WiX errors. Here's your hint as requested - http://msdn.microsoft.com/en-us/library/windows/desktop/aa369206.aspx or if that's not enough how about http://msdn.microsoft.com/en-us/library/windows/desktop/aa369022.aspx I think what you may be missing is basic troubleshooting

Re: [WiX-users] How to disable WIXUI_EXITDIALOGOPTIONALCHECKBOX in exit dialog according to the condition?

2012-05-15 Thread Pally Sandher
According to http://wix.sourceforge.net/manual-wix3/run_program_after_install.htm you should just need to set the WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT property to an empty value for the checkbox to not show. WiX v3.5 sources also show similar. How you do that is up to you. Type 51 Custom

Re: [WiX-users] Signing the burn bootstrapper

2012-05-15 Thread Bruce Cran
On 15/05/2012 11:35, Bruce Cran wrote: I think that error occurs if you compress packages into the installer executable but don't sign them: I found that if you sign the installer but leave the MSI files unsigned then Burn fails to extract them at runtime. The problem wasn't with the

[WiX-users] Any way to debug managed custom action in VS?

2012-05-15 Thread tetelee
This question sounds quite straightforward but I couldn't find a clear solution. I have created one WIX custom action project and one WIX installer project which is using this managed CA dll. It succeeds in calling the function of CA project, but inside the CA function there is some error. So

Re: [WiX-users] Error 2343

2012-05-15 Thread Daniel Madill
Hi Aaron, If you get an error about no Media table, perhaps you are missing a line such as: Media Id=1 Cabinet=media1.cab EmbedCab=yes / in your product.wxs file. I haven't taken the time to verify what errors you get if this line is missing, since I've always included it, but that's a

Re: [WiX-users] Any way to debug managed custom action in VS?

2012-05-15 Thread MIchael Clark
Check out the following http://blog.torresdal.net/CommentView,guid,BFEBE347-AD82-4C76-A96E-1C22AA39EFC9.aspx http://blog.torresdal.net/CommentView,guid,BFEBE347-AD82-4C76-A96E-1C22AA39EFC9.aspx -- View this message in context:

Re: [WiX-users] Deserialization of wxs file

2012-05-15 Thread Rob Mensching
The WiX CodeDom does not understand the preprocessor. On Tue, May 15, 2012 at 4:06 AM, Ilana Girshevich ilana...@yahoo.comwrote: Hello, I have some automation to fill product.wxs file with fieatures/components.This file has also some ?include some.wxi? When I deserialize our product.wxs

Re: [WiX-users] MSI projects fail to build after upgrading to v3.6.2914.0

2012-05-15 Thread Rob Mensching
Did you rebuild all source? Looks like a field is no longer nullable and you might have stale wixobj or wixlib. Otherwise it's a bug and a repro would be appreciated. On Tue, May 15, 2012 at 3:34 AM, Pally Sandher pally.sand...@iesve.comwrote: Upgraded to v3.6.2914.0 from v3.6.2907.0. None of

Re: [WiX-users] MSI projects fail to build after upgrading to v3.6.2914.0

2012-05-15 Thread Pally Sandher
All I did was Rebuild All in VS 2010 Rob. Clean All followed by Rebuild All exhibits the same behaviour. Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment** Integrated

[WiX-users] [SPAM] RE: How to disable WIXUI_EXITDIALOGOPTIONALCHECKBOX in exit dialog according to the condition?

2012-05-15 Thread Neil Sleightholm
I did something like this: SetProperty Id=WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT Value=Run application After=ExecuteAction Sequence=ui![CDATA[WorkstationFeature = 3]]/SetProperty Where WorkstationFeature is a reference to my optional feature. Neil -Original Message- From: tzleon

Re: [WiX-users] MSI projects fail to build after upgrading to v3.6.2914.0

2012-05-15 Thread Bob Arnson
On 15-May-12 06:34, Pally Sandher wrote: at Microsoft.Tools.WindowsInstallerXml.Binder.BindDatabase(Output output, String databaseFile) in e:\delivery\Dev\wix36_public\src\wix\Binder.cs:line 1582 Definitely a bug, please file. Workaround is to not suppress .wixpdb output. --

Re: [WiX-users] MSI projects fail to build after upgrading to v3.6.2914.0

2012-05-15 Thread Pally Sandher
Done - https://sourceforge.net/tracker/?func=detailaid=3526942group_id=105970atid=642714 Cheers Bob. Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment** Integrated

Re: [WiX-users] The feature-action state value not correct after CostFinalize stage in Wix 3.6

2012-05-15 Thread Wilson, Phil
In cases where the user chooses features from a dialog, that dialog is after CostFinalize in the MSI files I've looked at, so feature-action is unknown. Maybe it's correct after CostFinalize if you've specified features in advance on the command line, but I don't know if that's what you're

[WiX-users] Hot do I replace specific files of a wixlib with newer versions in my installer?

2012-05-15 Thread mba
Hi, I am using a large wixlib file in my wix installer. Now, I want to include newer versions of a few files in my installer which are included in the wixlib, without rebuilding the wixlib. Instead, I want to include the newer version of these files in my main wxs file. I learned that the Ids of

Re: [WiX-users] Error 2343

2012-05-15 Thread Aaron Oxford
Hi Pally and thanks for the reply, I believe you've missed the point, and subject, of my post: Error 2343 - Specified path is empty. I used the ICE error as an example of getting too much information, as opposed to the Error 2343 which couldn't really be less helpful, even with verbose logging.

Re: [WiX-users] MSI projects fail to build after upgrading to v3.6.2914.0

2012-05-15 Thread Bob Arnson
On 15-May-12 10:53, Pally Sandher wrote: Done - https://sourceforge.net/tracker/?func=detailaid=3526942group_id=105970atid=642714 Thanks. Fixed for Monday's build. I am curious, however: Why do you suppress .wixpdb generation? Is it a question of perf? -- sig://boB http://joyofsetup.com/

Re: [WiX-users] The feature-action state value not correct after CostFinalize stage in Wix 3.6

2012-05-15 Thread tzleon
Can I adjust the order of CostFinalize and Feature select dialog? Why the CostFinalize after Feature select dialog in Wix? -- View this message in context:

Re: [WiX-users] [SPAM] RE: How to disable WIXUI_EXITDIALOGOPTIONALCHECKBOX in exit dialog according to the condition?

2012-05-15 Thread tzleon
Yes, That's did the trick, thanks! Neil Sleightholm wrote I did something like this: SetProperty Id=WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT Value=Run application After=ExecuteAction Sequence=ui/SetProperty Where WorkstationFeature is a reference to my optional feature. Neil

Re: [WiX-users] Error 2343

2012-05-15 Thread Aaron Oxford
Regarding trying to find the cause of an Error 2343 - Specified path is empty. The only way I discovered to deal with this problem was through a process of elimination. Even having now found the exact location of the problem I can see that there would have been nothing in any of the logs that

Re: [WiX-users] Hot do I replace specific files of a wixlib with newer versions in my installer?

2012-05-15 Thread Rob Mensching
Did you bind the files in the .wixlib? If so, you need to rebuild the .wixlib. Also, order of files installed is not something you control in MSI. You shouldn't need order. Just list the filles you want installed and they will all be installed. On Tue, May 15, 2012 at 11:01 AM, mba

Re: [WiX-users] Error 2343

2012-05-15 Thread Rob Mensching
What exactly needed to be caught? If we can catch it in the WiX toolset we should. On Tue, May 15, 2012 at 7:09 PM, Aaron Oxford aaron.oxf...@objecttrading.com wrote: Regarding trying to find the cause of an Error 2343 - Specified path is empty. The only way I discovered to deal with this

Re: [WiX-users] Error 2343

2012-05-15 Thread Aaron Oxford
Hi Rob, I don't believe you'd be able to catch this, based on my very limited understanding of WIX and the installer services. Since the directory path in question was supposed to be dynamically set, there would be no way to be sure at compile time that the directory will exist (or that the path