Re: [WiX-users] heat.exe: Harvest contents of directory and NOT the directory name

2010-04-28 Thread jeff00seattle
I took some hunting but I found the flag (have not tried it yet) http://www.tramontana.co.hu/wix/lesson6.php http://www.tramontana.co.hu/wix/lesson6.php Yet another switch, -srd will suppress the identifier generation for the root folder specified. File components in the root folder will refer

Re: [WiX-users] heat.exe: Harvest contents of directory and NOT the directory name

2010-04-28 Thread jeff00seattle
Thanks for the reply, However, I do not see suppress root directory flag viewing the following heat.exe documentation link: http://wix.sourceforge.net/manual-wix3/heat.htm http://wix.sourceforge.net/manual-wix3/heat.htm - Thanks Jeff in Seattle -- View this message in context: http://win

[WiX-users] A new plan for WiX v3.5, introducing WiX v3.6

2010-04-28 Thread Rob Mensching
I just posted a blog entry about changes to the WiX v3.5 plan: http://robmensching.com/blog/posts/2010/4/28/Change-of-plans-for-WiX-v3.5. This plan is based on feedback sent here (and other places) about getting a stable WiX toolset that supports Visual Studio 2010. It pains me to bump Burn again

Re: [WiX-users] ICE64 - putting files in user's personal data folder

2010-04-28 Thread Rob Mensching
This might help some: http://robmensching.com/blog/posts/2007/4/27/How-to-create-an-uninstall-shortcut-and-pass-all-the On Wed, Apr 28, 2010 at 10:34 AM, Wix Mailing List wrote: > I want to place some database files in the user's My Documents folder in a > folder for the app. In disassembling th

Re: [WiX-users] heat.exe: Harvest contents of directory and NOT the directory name

2010-04-28 Thread Navid Azimi-Garakani
There's a suppress root directory flag on heat.exe that controls this for you. Thanks, Navid -Original Message- From: jeff00seattle [mailto:jeff_tan...@earthlink.net] Sent: Wednesday, April 28, 2010 3:14 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] heat.exe: Harvest conte

Re: [WiX-users] VSIX after installation?

2010-04-28 Thread Christopher Painter
http://www.chilkatsoft.com/chilkatSfx.asp --- On Wed, 4/28/10, Will Sullivan wrote: > From: Will Sullivan > Subject: RE: [WiX-users] VSIX after installation? > To: "chr...@deploymentengineering.com" , > "General discussion for Windows Installer XML toolset." > > Date: Wednesday, April 28,

[WiX-users] heat.exe: Harvest contents of directory and NOT the directory name

2010-04-28 Thread jeff00seattle
Hi I have a directory .\foo\ that has contents I want to harvest. However, in the end, my INSTALLDIR within Harvester.wxs contains directory foo and then its components, and I want only want is components. In other words, my current harvest is this... But I wan

Re: [WiX-users] WiX 3.5 Source Code

2010-04-28 Thread Mike Carlson (DEV DIV)
Yes, we still use nant/wix.build, and "make.bat" should work. I don't have direct experience with the wix CVS repository, but I would think it's best to begin building from cvs. If there is a problem, certainly it's something we will want to fix. -Original Message- From: Neil Sleighthol

Re: [WiX-users] WiX 3.5 dutil.lib build

2010-04-28 Thread Mike Carlson (DEV DIV)
Just saw your later reply with the solution to your own problem; sorry for the spam everyone. Threads on this alias aren't well-organized in my mail viewer, and I often forget to manually check if there is a later reply to a thread, before replying myself... Thanks, Mike Carlson -Original

Re: [WiX-users] WiX 3.5 dutil.lib build

2010-04-28 Thread Mike Carlson (DEV DIV)
The VerQueryValueW() call has been there since WiX 3.5 forked from WiX 3.0, so I don't think this problem is necessarily Unicode-related. Perhaps you only recently started using FileUtil's FileVersion() function (which requires "version.lib" to be linked in)? Try adding "version.lib" to the lis

Re: [WiX-users] Simple question about properties

2010-04-28 Thread Matt Johnson
That's what I thought. Thanks. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Castro, Edwin G. (Hillsboro) [mailto:edwin.cas...@fiserv.com] Sent: Wednesday, April 28, 2010

Re: [WiX-users] VSIX after installation?

2010-04-28 Thread Will Sullivan
I've got VS and wix, I don't have anything to make a " self extracting zip file that calls the command line to do the vsix install ". -Original Message- From: Christopher Painter [mailto:chr...@deploymentengineering.com] Sent: Wednesday, April 28, 2010 3:17 PM To: General discussion fo

Re: [WiX-users] C# Pack a Cab with Progress

2010-04-28 Thread Jason Ginchereau
The progress delegate you pass as the progressHandler will receive a series of events during archive compression or decompression, which describe in extreme detail how far long the process is. Did you see the event sequence examples in the documentation for the ArchiveProgressType enum? I've pa

Re: [WiX-users] VSIX after installation?

2010-04-28 Thread Christopher Painter
Well, if that's all you really want, why not just make a self extracting zip file that calls the command line to do the vsix install? Why bother with MSI at all? --- On Wed, 4/28/10, Will Sullivan wrote: > From: Will Sullivan > Subject: Re: [WiX-users] VSIX after installation? > To: "Gener

Re: [WiX-users] ServiceInstall does nothing in WiX 3.5?

2010-04-28 Thread Ramaswamy, Srinivasan
I am not sure whether what we faced has any relationship to this. In any case, let me reply with our experience. Maybe it is useful :-) The installer is Install Shield based and not MSI. We were installing Windows Service on 2008 R2 as part of overall install. The services were using path environ

Re: [WiX-users] VSIX after installation?

2010-04-28 Thread Will Sullivan
Aaaah, that link helped. I actually need to run vsixinstaller.exe and pass it the vsix. Now to find out how to schedule such an action... -Original Message- From: Alexander Shevchuk (Volt) [mailto:a-ale...@microsoft.com] Sent: Wednesday, April 28, 2010 12:51 PM To: General discussion f

Re: [WiX-users] VSIX after installation?

2010-04-28 Thread Will Sullivan
I just want a cheap and dirty way to install some dlls and drop a template in VS. The template is already in a .vsix (I exported a solution as a template), which installs nicely. My initial idea was to just package the .vsix in the installer then have the installer "schedule" (somehow) vsixins

Re: [WiX-users] Simple question about properties

2010-04-28 Thread Navid Azimi-Garakani
Anyone have some WiX sample to "automatically" save all of the properties from the command-line into the registry? -Original Message- From: Castro, Edwin G. (Hillsboro) [mailto:edwin.cas...@fiserv.com] Sent: Wednesday, April 28, 2010 9:13 AM To: General discussion for Windows Installer

[WiX-users] ICE64 when copying file to Documents\AppName

2010-04-28 Thread Wix Mailing List
I want to place some database files in the user's My Documents folder in a folder for the app. In disassembling the MSI file that windows installer creates, I found the name to use for the folder. But when I try to use it, I get ICE64 saying the directory is in the user profile but not in the Rem

[WiX-users] ICE64 - putting files in user's personal data folder

2010-04-28 Thread Wix Mailing List
I want to place some database files in the user's My Documents folder in a folder for the app. In disassembling the MSI file that windows installer creates, I found the name to use for the folder. But when I try to use it, I get ICE64 saying the directory is in the user profile but not in the Rem

Re: [WiX-users] VSIX after installation?

2010-04-28 Thread Jim Deville
I've been told by people on the VSX team to NOT use the mixed mode installation. If you want features that the VSIX can't offer, they've said to use MSI instead. They also said that the page you linked right there is not accurate, and will be changed or removed. Thanks, JD -Original Messa

Re: [WiX-users] VSIX after installation?

2010-04-28 Thread Alexander Shevchuk (Volt)
Seems like there is special procedure to do that: http://msdn.microsoft.com/en-us/library/ee332502.aspx Also, documentation is saying that in order to install templates using .vsix, target system has to have SDK or Visual Studio installed. As far as WiX code validity, CA declaration looks fine.

Re: [WiX-users] RemoveExistingProducts after InstallInitialize -> kb 905238

2010-04-28 Thread Blair
It happened exactly that way to us. The C++ merge modules seemed to require the late registration. -Original Message- From: Viv Coco [mailto:vcotirl...@hotmail.com] Sent: Tuesday, March 30, 2010 3:55 AM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] RemoveE

Re: [WiX-users] Scheduling a merge module's custom action

2010-04-28 Thread Blair
Not easily. You could do a post-build update of the MSI to insert the custom action into the sequence table via MSI's SQL (the SDK provides a VBS file that will allow you to do that). -Original Message- From: Jared Cannegieter [mailto:jared.cannegie...@hotdocs.com] Sent: Monday, March 29,

Re: [WiX-users] how to install nothing

2010-04-28 Thread Blair
Suppress/remove the following standard actions in the InstallExecuteSequence table: ProcessComponents, PublishProduct, RegisterProduct, PublishComponents, PublishFeatures, UnpublishFeatures, UnpublishComponents. Also, set every compone...@guid values to the empty string. I'm not sure what errors

Re: [WiX-users] Simple question about properties

2010-04-28 Thread Castro, Edwin G. (Hillsboro)
Typically, "manually" means storing the values in the registry and using RegistrySearch to fetch the values. 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 before printing this e

[WiX-users] VSIX after installation?

2010-04-28 Thread Will Sullivan
I'm trying to use Wix to drop some DLLs on the target machine and then run another installer, this being a .VSIX that installs some templates. I'm not having any luck getting this to work. This is what I'm doing right now: This doesn't work. All I want to do is tell the operatin

Re: [WiX-users] ICE error

2010-04-28 Thread Blair
Validation (the "ICE" tests) will not work if the account the build runs under is non-interactive AND does not hold administrative privileges. So, either your build account has to be an admin account OR you have to alter your build system such that the build runs as a logged in user instead of as a

Re: [WiX-users] NetFxExtension and .NET 4

2010-04-28 Thread Will Sullivan
I'd doubt it. You'd have to do some other check, such as looking for \windows\microsoft.net\Framework\v4.0.30319 -Original Message- From: Alex Ivanoff [mailto:alex.ivan...@shavlik.com] Sent: Wednesday, April 28, 2010 11:43 AM To: General discussion for Windows Installer XML toolset. Sub

Re: [WiX-users] NetFxExtension and .NET 4

2010-04-28 Thread Alex Ivanoff
So no .NET 4 detection support in 3.0. -Original Message- From: Will Sullivan [mailto:wsulli...@softdocs.com] Sent: Wednesday, April 28, 2010 10:28 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] NetFxExtension and .NET 4 Oh well. I went this far: "A

Re: [WiX-users] NetFxExtension and .NET 4

2010-04-28 Thread Will Sullivan
Oh well. I went this far: "Also, Wix 3.0 does not work when installing .NET 4 assemblies to the GAC or trying to NGEN them, so it might be worth moving to 3.5" And stopped. Detect .NET 4.0? In Wix 3.5, the net FX extension supplies a property you can use. See http://wix.sourceforge.net/man

Re: [WiX-users] NetFxExtension and .NET 4

2010-04-28 Thread Alex Ivanoff
I never said I need install into GAC and NGEN. All I need is detect .NET 4 presence. -Original Message- From: Will Sullivan [mailto:wsulli...@softdocs.com] Sent: Wednesday, April 28, 2010 10:05 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] NetFxExten

Re: [WiX-users] Simple question about properties

2010-04-28 Thread Pally Sandher
You have to do it manually. 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 ** Integrated Environmental Solutions Limited. Registered in Scotland No. SC151456 Registered Offic

Re: [WiX-users] NetFxExtension and .NET 4

2010-04-28 Thread Will Sullivan
I'm using it to do what you want (GAC and ngen). As long as you aren't trying to install to IIS7 3.5 is pretty decent. Just make sure to get the absolute latest latest build and update if you encounter any issues. -Original Message- From: Alex Ivanoff [mailto:alex.ivan...@shavlik.com]

[WiX-users] Simple question about properties

2010-04-28 Thread Matt Johnson
How do I mark a property so that its value is retained for uninstall or repair modes? I thought this was done automagically, but it doesn't seem to be working. For example, during install I ask the user to select a sql server. Installation scripts are deployed to this server. During uninstal

Re: [WiX-users] Error 1923 when installing service

2010-04-28 Thread Blair
The "." domain name is always an alias for the current computer. -Original Message- From: Mark Simonetti [mailto:ma...@opalsoftware.co.uk] Sent: Sunday, March 28, 2010 8:09 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Error 1923 when installing ser

Re: [WiX-users] Problem creating virtual directory on Windows 2003

2010-04-28 Thread Matt Johnson
This is another example of the bug I reported here yesterday, and several others are reporting in SFBUG:2966134 and SFBUG:2979773. They both have priority 5. Hopefully it is getting more attention than that, as it seems widespread. Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Appl

[WiX-users] Problem creating virtual directory on Windows 2003

2010-04-28 Thread Pierre Lebel
I'm writing a small installer using WIX. I use WIX 3.5 and the IIsExtension to deploy a Web Service prototype. It works fine on Windows 2008 after turning UAC (off because the installer is not signed). When it comes to Windows 2003, the installation fails with these errors. ConfigureI

Re: [WiX-users] MSI fails when compiled on a different machine

2010-04-28 Thread Kevin Garman
Hi, I got an email regarding my findings on this, so I thought I'd post to let you all know where I ended up. The version of Wix that I ended up using is 3.5.1426.0. I tried a bunch of later versions and they all failed. The target systems tested on where XP IIS/5.1 and Windows 2000 IIS/5.0.

Re: [WiX-users] [Help] ConfigureIIs Custom Action for IIS7

2010-04-28 Thread John L Krupka
Version 3.0 added an IIS extension. http://wix.sourceforge.net/manual-wix3/iis_xsd_index.htm http://wix.sourceforge.net/manual-wix3/iis_xsd_index.htm Version 3.5 added support for II7 so I would recommend this version. As a matter of fact you will likely want a recent build of 3.5 as bugs ha

Re: [WiX-users] FileSearch on INSTALLLOCATION, whereas INSTALLLOCATION is either registry entry or nested Directory tag

2010-04-28 Thread Blair
Unfortunately with MSI's AppSearch action, you don't have any real control over the order of the attempted resolution of each of the various properties. -Original Message- From: Viv coco [mailto:vcotirl...@hotmail.com] Sent: Friday, March 26, 2010 2:18 AM To: WiX Subject: [WiX-users] File

Re: [WiX-users] Installing from embedded CAB file and Folder

2010-04-28 Thread Blair
directo...@source -Original Message- From: Sanjay Poria [mailto:sanjay.po...@xanalys.com] Sent: Monday, March 22, 2010 3:47 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Installing from embedded CAB file and Folder I think i'm nearly there but ha

Re: [WiX-users] Creating ProgramMenuFolders and COM Server registration

2010-04-28 Thread Blair
I don't believe that heat "out-of-the-box" supports out-of-proc COM. It can be extended to do so, however. The warning about too many components in a feature probably says something about Windows 95. It can be ignored or suppressed if you prevent installing onto "really-old-OSs". Otherwise you can

Re: [WiX-users] Uninstalling with merge module now takes nearly three minutes

2010-04-28 Thread Blair
bootstrapper -Original Message- From: s...@pacaccess.com [mailto:s...@pacaccess.com] Sent: Wednesday, March 17, 2010 3:06 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Uninstalling with merge module now takes nearly three minutes Thanks for the fee

Re: [WiX-users] Invert Feature based on other Feature

2010-04-28 Thread Blair
-Original Message- From: Dave Brotherstone [mailto:dav...@pobox.com] Sent: Wednesday, March 17, 2010 2:16 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Invert Feature based on other Feature On Wed, Mar 17, 2010 at 4:17 PM, Pally Sandher wrot

Re: [WiX-users] test and production install

2010-04-28 Thread Blair
Two is likely to be both simpler for you to implement and more flexible for your users to use. -Original Message- From: Sam Domonkos [mailto:s...@pfgltd.com] Sent: Wednesday, March 17, 2010 12:25 PM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] test and pr

Re: [WiX-users] Upgrade Vs Install - Leaving folders/files behind on Upgrade, not on Install

2010-04-28 Thread Blair
Was this ever resolved? If not, you need to schedule RemoveExistingProducts "late" (e.g. around InstallFinalize) instead of "early". The reason has to do with the timing of the removal of the previous product(s) and the fact that the components don't have the current product's instance of the comp

Re: [WiX-users] WiX Logging

2010-04-28 Thread David Watson
Hi, Also its worth noting that you can enable logging for the whole windows installer system (i.e. any msi run on the system) with a registry key, if you don't want to fiddle with your MSI. This can be handy for testing ARP uninstalls or repairs etc. http://support.microsoft.com/kb/223300

Re: [WiX-users] Writing own Wix Extension

2010-04-28 Thread vunder
As I understand extension does not do anything (I mean actions during installation), it only add new tables in MSI-database or modify existing. Real actions providing by custom actions, executing as allways after "InstallFiles". Am I right? -- View this message in context: http://windows-install