[WiX-users] Windows Service Event Log Source set to 'Service1'

2009-04-14 Thread Murray Hipper
Hi, I have created a windows service using the Service Install and Service Control tags as below. The Name and Description all work fine etc however in the Windows Event Log, under Application when the server starts, sto

[WiX-users] Run a .bat file minimized?

2009-04-14 Thread Tabmow
Hi all, In our installer (using Wix 2.x on Win2003), we have to invoke a couple .bat files for various and sundry things. When they run, they launch a dos shell which goes above our install gui.Is there any way to have it spawned 'minimized' at least so there's no distraction during in

[WiX-users] RemoveFile Table

2009-04-14 Thread Benjic
Under windows installer reference it says [QUOTE] RemoveFile Table FileName This column contains the localizable name of the file to be removed. If this column is null, then the specified folder will be removed if it is empty. All of the files that match the wildcard will be removed from t

Re: [WiX-users] LaunchConditions + Bootstrapper

2009-04-14 Thread Sascha Beaumont
Sounds similar to a problem I recently encountered when looking for a decent bootstrapper to use with WiX. I'd suggest duplicating the search anyway (since corporate environments usually require an MSI for deployment). The difference will be that the MSI just throws an error and tells the user to

Re: [WiX-users] IIS virtual web directory modification/settings

2009-04-14 Thread Thomas S. Trias
1. I ended up calling aspnet_regiis from a custom action (if there is a better way, someone speak up): NOT (SKIPCONFIGUREIIS OR Installed) AND VersionNT > 400 NOT (SKIPCONFIGUREIIS OR Installed) AND VersionNT > 400 Note that I set the script maps by

Re: [WiX-users] Installing .NET service as "NT Authority\Network Service" fails on some locales of Windows XP

2009-04-14 Thread Brian Gillespie
RTFM? Doh! I'm doing some final testing now, and your suggestion appears to work perfectly. Thanks Neil, and thanks WiX crew for putting together such an excellent installer authoring tool - it has been a pleasure to work with compared to anything I've used in the past. - Brian Brian Gill

Re: [WiX-users] Installing .NET service as "NT Authority\Network Service" fails on some locales of Windows XP

2009-04-14 Thread Neil Sleightholm
Take a look at the WixQueryOsWellKnownSID topic in the help file, this should allow you to use a "well known sid" for the account id which should work on all languages. Neil -Original Message- From: Brian Gillespie [mailto:br...@mcneel.com] Sent: 14 April 2009 19:48 To: wix-users@lists.s

Re: [WiX-users] Multiple web-site installer

2009-04-14 Thread Scott Vickery
-Original Message- From: Luke Bakken [mailto:luke.bak...@gmail.com] Sent: Tuesday, April 14, 2009 4:21 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Multiple web-site installer > I have a situation where I need to run the same installer more than

Re: [WiX-users] Multiple web-site installer

2009-04-14 Thread Don Benson
On Tue, Apr 14, 2009 at 4:03 PM, Scott Vickery wrote: > Hello list, > > I have a situation where I need to run the same installer more than once on > a web server. The situation is that I want to be able to install to a given > web site once for each customer we have on the same web server. If

Re: [WiX-users] Multiple web-site installer

2009-04-14 Thread Luke Bakken
> I have a situation where I need to run the same installer more than once on a > web server.  The situation is that I want to be able to install to a given > web site once for each customer we have on the same web server.  As I get > more customers for a given product, I want to be able to re-r

[WiX-users] Multiple web-site installer

2009-04-14 Thread Scott Vickery
Hello list, I have a situation where I need to run the same installer more than once on a web server. The situation is that I want to be able to install to a given web site once for each customer we have on the same web server. As I get more customers for a given product, I want to be able to

[WiX-users] IIS virtual web directory modification/settings

2009-04-14 Thread John Trump
I need to accomplish the following install tasks using WiX: 1. Set ASP.NET version to 2.0.50727 2. Set security for virtual web directory a. Add the following users: i. \ASPNET (for example MyServer\ASPNET) ii. \IIS_WPG (for example MyServer\IIS_WPG) 3

[WiX-users] Installing .NET service as "NT Authority\Network Service" fails on some locales of Windows XP

2009-04-14 Thread Brian Gillespie
Hi all, Our installer installs a service that should run on XP/Vista as "NT Authority\Network Service". We're using custom actions to set a McNeelUpdateServiceName property appropriately, and then use that property in the action. Depending on how I spell "Network Service" the user account

Re: [WiX-users] Wix Installer Upgrade problem

2009-04-14 Thread Alex Cater
And you don't need to use CustomActions to prevent downgrading. That's what the tag is for. Care to elaborate..? Please respect mailing list etiquette: Quote what you reply to and trim it to only the relevant parts. -- View this message in context: http://n2.nabble.com/Wix-Installer-Upg

Re: [WiX-users] uninstalling second patch does not remove patched files

2009-04-14 Thread shibo
Heath, Having read your blog "Why is My Feature Advertised?", in my case, there is only one feature containing all the components. patch 1 has new folder 1, patch 2 has folder 1 and folder 2, will the folder1 in patch 2 supersede that in patch 1 even though there are the same? If so, then th

Re: [WiX-users] Uninstall Application Issues

2009-04-14 Thread Pally Sandher
Resending your question 3 times in a 7 hour period isn't going to get it answered any quicker even if you do use different subjects on each post. Especially when the day you're posting on is a holiday in most of the world. Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 94

Re: [WiX-users] UN-Install Issue...

2009-04-14 Thread Pally Sandher
On the issue with the files not being removed, I would check a verbose log file & see what the problem is. Install your product using "msiexec /i /l*vx " & install it to somewhere like C:\TestMyApp or something (you could use "msiexec /i /l*vx /qb MYAPPFOLDER=C:\TestMyApp" to skip the UI). The

Re: [WiX-users] how to pop up a messageBox to tell user "Uninstall is finish" when uninstall process is finish?

2009-04-14 Thread Pally Sandher
Author an ExitDialog? http://msdn.microsoft.com/en-us/library/aa368569(VS.85).aspx Or use one of the standard WixUI libraries to do it for you? Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + In

Re: [WiX-users] Heat missing some RegistryValue elements (Programmable) from VB6 code?

2009-04-14 Thread Roy Abou Assaly
Hi, I was away for a week or else I would've replied sooner. I tested the following using version 3.0.5210.0. This works: D:\lab\WiX\XMLEditor>heat dir . -v -sfrag -gg -svb6 -out foo.xml Microsoft (R) Windows Installer Xml Toolset Harvester version 3.0.5210.0 Copyright (C) Microsoft Corporat

[WiX-users] Deleting "orphaned" component.

2009-04-14 Thread Luke Bakken
Hello everyone, Yesterday Phil Wilson gave me an excellent VBScript to list all the registered components and associated products on a machine. The reason I needed this is that it appears I have an "orphaned" component that should not be in the component database but yet it is. I suspect it is due

Re: [WiX-users] Heat issues

2009-04-14 Thread Dominik Guder
1) The created wxs file is in UTF8 + Signature (BOM) (on my machine) I'm not sure if my machine/VS2005 has some wired configuration, but when I add the created files to VS2005 it is complaining that the xml header is not starting in first column. So I have to manually remove any BOM before htt

[WiX-users] (no subject)

2009-04-14 Thread Holmgren Mathias
Got this to work on my own, so I'm replying to my own question here for archive reasons. There's another registry key that actually holds the exact installation root path. This works: ... And then use that component ref in the r

[WiX-users] CA scheduling question

2009-04-14 Thread Jason Birch
Hi all, I've got an installer that sets up some IIS7 features using appcmd.exe. I am having difficulty finding a way to successfully uninstall these IIS7 configurations on a server with UAC enabled. I'm still fumbling my way into MSI, so this is likely just ignorance on my part... On install

Re: [WiX-users] Wix Installer Upgrade problem

2009-04-14 Thread Pally Sandher
You may want to actually change the version number too. I suspect this is where most of your issues are coming from. *New Version (1.0.1.1) source snippet:* And you don't need to use CustomActions to prevent downgrading. That's what the tag is for. Palbinder Sandher Software Deployment & IT

Re: [WiX-users] Wix Installer Upgrade problem

2009-04-14 Thread Michael
Thanks Alex, That fixed my problem. Alex Cater wrote: > If new version(1.0.1.1) > installed, then I try to install old version (1.0.0.0). Thats too > installing. I'm getting two instances of my product in 'Add/Remove > Programs'. What will be the cause? > > > You need to make use of the NEWPRODUCT

[WiX-users] Error to build patch

2009-04-14 Thread Michael
Hi, I using sample given in 'http://www.tramontana.co.hu/wix/lesson4.php' for patching. In that 3 .wxs files there, Error.wxs, Fixed.wxs, Patch.wxs. I made small changes in code to build for Wix v3. I compiled all and created Error\Product.msi, Fixed\Product.msi and Patch.pcp. When I try to c

[WiX-users] File removal based on whether another file is being removed.

2009-04-14 Thread Ali-Akber Saifee
I have a situation which is similar to the case when a CompanionFile is used but for file removal and not upgrade. I have a shared location in Common Files where application support dlls that are used by different products are installed. These files are installed with SharedDllRefCount set to 'yes

[WiX-users] adding a bootstrapper breaks comboboxes on custom UI!

2009-04-14 Thread barry
Hi, I am having a strange problem with my installer. Basically i have an installer for a c# com office addin. It uses a custom UI that has a combo box on it. The combobox sets a public property loglevel which has a default value of 1: my custom UI code is as follows:

[WiX-users] How to grab directory of Excel.exe during installation

2009-04-14 Thread Holmgren Mathias
I'm aware of the guide at http://support.microsoft.com/kb/240794 however that only solves half my problem. Basically, I know that the following registry key contains the directory I want and that it is consistent over Excel 2002/XP, Excel 2003 and Excel 2007 (same GUID for all three versions). HK

Re: [WiX-users] Wix Installer Upgrade problem

2009-04-14 Thread Alex Cater
If new version(1.0.1.1) installed, then I try to install old version (1.0.0.0). Thats too installing. I'm getting two instances of my product in 'Add/Remove Programs'. What will be the cause? You need to make use of the NEWPRODUCTFOUND property set by the UpgradeVersion element to prevent a do