Re: [WiX-users] Running WiX tools from Cygwin, environment variables

2009-04-04 Thread Geoff Kennedy
Thanks HeathI'll look into that. Message: 2 Date: Sat, 4 Apr 2009 01:36:32 -0700 From: Heath Stewart Subject: Re: [WiX-users] Running WiX tools from Cygwin, environment variables

Re: [WiX-users] ShellNew/FileName

2009-04-04 Thread nathanjphillips
OK, done this, which seems to work: -- View this message in context: http://n2.nabble.com/ShellNew-FileName-tp2584703p2586782.html Sent from the wix-users mailing list archive at Nabble.com. -- __

Re: [WiX-users] Best Practice for using Variables

2009-04-04 Thread Brian Rogers
Hey Kai-Uwe, I imagine that the varible definations are not correctly declared in your wixproj file. What you have listed below should work with $(var.xxx). The !(loc.xxx) and !(wix.xxx) is used later by lit or light to replace the variables for localization or wixlibs. Thanks, Brian Rogers "Int

Re: [WiX-users] ShellNew/FileName

2009-04-04 Thread Heath Stewart
Yes, though it's Windows Installer that doesn't add it for extensions. As long as you don't add Advertise="yes" to you Extension element it just results in a bunch of Registry table entries anyway so you can certainly add your own registry values using the same key. Be sure to include them in the s

Re: [WiX-users] Register com objects

2009-04-04 Thread Alexey Khrulev
Use heat.exe tool to extract COM-related information. 2009/3/30 sandun css > Hi, > > Is there a way in WiX, to register a COM object, without using custom > actions? > > Thanks, > Sandun. > > -- > ___

Re: [WiX-users] Multiple file extensions per ProgID

2009-04-04 Thread nathanjphillips
To answer my own question, the bit that was causing the problem was, of course, the duplicated Verb, not the duplicated Extension. The Verb is stored under the ProgId, not under the extension, despite the way things are laid out in Wix and therefore there can only be one Verb per ProgId. The fo

Re: [WiX-users] How refer Binary file in CA

2009-04-04 Thread Michael
Thanks Rob Mensching, But, I don't want to copy this file to computer. I want to refer it from installer like bitmap image. Is it possible? Regards, -SMR Rob Mensching wrote: > You'd have to extract the Binary out with the CustomAction. > > Michael wrote: > >> Hi, >> >> I'm new to Wix. I'm

[WiX-users] ShellNew/FileName

2009-04-04 Thread nathanjphillips
It seems like Wix doesn't support the ShellNew/FileName registry key under Extensions in order to allow Windows Explorer's New command to create a new file. Is it better to start with what Wix does provide using Extension and then add some extra registry keys to extend it or to do the whole set

Re: [WiX-users] CA before RemoveFiles

2009-04-04 Thread Michael
Thanks Rob Mensching, Which execute enumeration I must use. I tried with "immediate". I can't get 'CustomActionData'. Regards, -SMR Rob Mensching wrote: > Commit custom actions run at the very end, by design. > > Michael wrote: > >> Hi, >> >> I have set of CA(commit) to executes on uninsta

Re: [WiX-users] Running WiX tools from Cygwin, environment variables

2009-04-04 Thread Heath Stewart
If you use a .wixproj, you can run msbuild /v:diag and it will show all the variables for the process - whether environment variables or project variables. Details about writing a .wixproj file (wraps all the candle, light, etc. commands into a build project) can be found in wix.chm. On Fri, Apr 3