Re: [WiX-users] how to create a single component in output wxs file for whole directory using heat

2011-03-22 Thread Yan Sklyarenko
heat.exe doesn't support this out of the box - it was designed to encourage the best practice, which is one file - one component. However, you can apply an XSL transform to the heat output and change it the way you need. You can also take a look at the Paraffin tool (

Re: [WiX-users] Custom Wix 3.5 PreprocessorExtension anddebugmessages

2011-03-22 Thread Dennis Reil
Thanks Rob! -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Samstag, 19. März 2011 19:23 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Custom Wix 3.5 PreprocessorExtension anddebugmessages You create a MessageEventArgs

Re: [WiX-users] how to create a single component in output wxs file for whole directory using heat

2011-03-22 Thread Pally Sandher
You can also use WiXEdit (http://sourceforge.net/projects/wixedit/) to do that but you'll need to use version 0.7.2.3 or older as they changed it to work as per heat.exe from 0.7.3 onwards. Palbinder Sandher  Software Deployment Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501

[WiX-users] simple condition...

2011-03-22 Thread Frédéric Viollet
Hi folks, I'm trying to implement a very (at least, I guess it is...) simple condition... I would like a Component to be installed ONLY on an initial installation (and not on Major Upgrade or Repair) The code looks like this: Upgrade Id='89AC3E0C-C945-CE4F-8975-646C107FFAE9' UpgradeVersion

[WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Tissington
In my install I'm creating a number of shortcuts. They are also automatically appearing in the Start Menu list of recently opened programs. Is there a way to prevent them appearing on this list? -- Enable your software

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Pally Sandher
Don't install on Windows 7? Palbinder Sandher  Software Deployment 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 Environmental Solutions Limited. Registered in Scotland No. SC151456

Re: [WiX-users] simple condition...

2011-03-22 Thread Pally Sandher
dblock of dotnetinstaller fame created a bunch of standard properties in a WiX include which you may find useful for this. See http://code.dblock.org/ShowPost.aspx?id=101 Palbinder Sandher  Software Deployment Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com

Re: [WiX-users] how to create a single component in output wxs file for whole directory using heat

2011-03-22 Thread Christopher Painter
Yan,  This comes up from time to time and I want to stress that there is no universal best practice that states every file should be the keyfile of it's own component.  1:1 is the most common situation that you would want to do this but it is not universally true.  The MSI SDK talks about

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Urman
Or add a ShortcutProperty element with @Key='System.AppUserModel.ExcludeFromShowInNewInstall' and @Value='1' to your Shortcut element, assuming you're using a version of WiX that supports this element. On Tue, Mar 22, 2011 at 08:02, Pally Sandher pally.sand...@iesve.com wrote: Don't install on

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Tissington
Hmm, WiX supports this but isn't this only supported with misexec 5.0 ? -Original Message- From: Michael Urman [mailto:mur...@gmail.com] Sent: 22 March 2011 13:56 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Shortcuts and Recent Programs list Or add

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread swapna.rachakonda
Where to copy companion files(path of companion files) for File element's CompanionFiles. -Original Message- From: Michael Urman [mailto:mur...@gmail.com] Sent: Tuesday, March 22, 2011 7:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Shortcuts

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Dick Van den Brink
I don't have a Windows 7 pc where i can test this now, but i just tested this on Windows XP with Windows ® Installer. V 4.5.6001.22159 and no errors occured. I hope to test this setup on a Windows 7 pc (with Windows Installer 5) tomorrow to see if it doesnt create a recent programs shortcut.

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Christopher Painter
Yes, but the original question applied to Windows 7 which is MSI 5.0.   --- Christopher Painter, Author of Deployment Engineering Blog Have a hot tip, know a secret or read a really good thread that deserves attention? E-Mail Me - Original Message From: Michael Tissington

Re: [WiX-users] simple condition...

2011-03-22 Thread Frédéric Viollet
Great, it does indeed seem to work now! Thanks again. Fred Le 22/03/2011 14:04, Pally Sandher a écrit : dblock of dotnetinstaller fame created a bunch of standard properties in a WiX include which you may find useful for this. See http://code.dblock.org/ShowPost.aspx?id=101 Palbinder

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Tissington
Well I can confirm it does not cause an error on Windows XP However it does not appear to work for me on Windows 7 Shortcut Id='Diagnostics' Name=$(var.ApplicationName) !(loc.Diagnostics) Target=[!diag] ShortcutProperty

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Dick Van den Brink
That's weird, according to this: http://kb.flexerasoftware.com/doc/Helpnet/installshield16helplib_sp1/SettingShellShtctProp.htm and http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/d8feae89-d5cd-44be-b21c-022a3c9a8a70 it should work.

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Skildum, Mathew
Would the version of the MSI engine you are targeting play a part in what happens. If you are not targeting the 5.0 version of the engine, this may not function as expected. Mat Skildum -Original Message- From: Dick Van den Brink [mailto:d_vandenbr...@live.com] Sent: Tuesday, March

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Christopher Painter
Take a look at the built MSI in Orca and rule out incorrectly authored table data.  Then log the installer and see if it gives you any clues.   --- Christopher Painter, Author of Deployment Engineering Blog Have a hot tip, know a secret or read a really good thread that deserves attention?

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Wilson, Phil
Not according to Raymond. It's just Windows trying to be helpful. It started in XP, but of course details often change. http://blogs.msdn.com/b/oldnewthing/archive/2005/11/24/496690.aspx Phil Wilson -Original Message- From: Michael Tissington [mailto:michael_tissing...@ciqual.com]

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Urman
Yup, the details do change: http://msdn.microsoft.com/en-us/library/dd391568(v=vs.85).aspx On Tue, Mar 22, 2011 at 12:20, Wilson, Phil phil.wil...@invensys.com wrote: Not according to Raymond. It's just Windows trying to be helpful. It started in XP, but of course details often change.

Re: [WiX-users] VS2010, Wix and MSBUILD

2011-03-22 Thread Pat O'Shea
Michael, can you provide those errors? I'm thinking it will help diagnose the issue. - Thanks! ~Pat -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/VS2010-Wix-and-MSBUILD-tp6192992p6197557.html Sent from the wix-users mailing list archive at

[WiX-users] Custom icon in MSI title bar

2011-03-22 Thread Margo Frary
Hi there, I want a custom icon to get displayed in the title bar when my msi is executed. (Thus, for example, in the image attached, I want to replace the standard MSI icon in the top left corner with my company specific icon) I do not have the option to create an exe, only have the Wix.

Re: [WiX-users] Could not harvest data from a 64bit dll

2011-03-22 Thread Wang, Miaohsi
Hi Rob, No, I did not find it resolved. I'm just having the same problem. Is there an workaround to extract COM data from a 64-bit COM object? Thanks a lot, Miaohsi -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Saturday, March 19, 2011 11:07 AM To:

Re: [WiX-users] WiX creating obj file in strange place

2011-03-22 Thread Rob Mensching
IIRC, it's not candle, it's MSBuild. That makes it harder. smile/ On Sun, Mar 20, 2011 at 3:40 PM, Rennie Petersen r...@merlinia.com wrote: Hi Rob, Thank you very much for your explanation. I have an alternative suggestion as to how this feature should be implemented, as I think it is

Re: [WiX-users] Custom icon in MSI title bar

2011-03-22 Thread Rob Mensching
Don't think that's supported. You can try ARPPRODUCTICON but I don't think that'll do it. On Tue, Mar 22, 2011 at 1:49 PM, Margo Frary margofr...@yahoo.com wrote: Hi there, I want a custom icon to get displayed in the title bar when my msi is executed. (Thus, for example, in the image

Re: [WiX-users] Could not harvest data from a 64bit dll

2011-03-22 Thread Rob Mensching
Fix the bug? On Tue, Mar 22, 2011 at 3:04 PM, Wang, Miaohsi miaohsi.w...@invensys.comwrote: Hi Rob, No, I did not find it resolved. I'm just having the same problem. Is there an workaround to extract COM data from a 64-bit COM object? Thanks a lot, Miaohsi -Original Message-