Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread Sébastien Mouren
2008/10/31 Richard [EMAIL PROTECTED]: In article [EMAIL PROTECTED], s zheng [EMAIL PROTECTED] writes: We have a requirement that the license agreement needs to be displayed and accepts y/n when installing from command line using msiexec, or use options silmilar to LICENSE_AGREEMENT=yes

[WiX-users] Change the title during install

2008-11-04 Thread Yuri Sakharov
Is there any way to change the title of feature during install? For example: Property Id=VARTITLE Value=Default title / Feature Id=SomeFeature Title=[VARTITLE] Level=1 ComponentRef Id=Dummy / /Feature And run it with msiexec /i my.msi VARTITLE=Another title

Re: [WiX-users] Installing the same files in 2 directories.

2008-11-04 Thread Brian Simoneau
What version did WiX start using smart cabbing? Has it been there all along? -Brian Simoneau -Original Message- From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2008 11:10 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users]

Re: [WiX-users] Installing the same files in 2 directories.

2008-11-04 Thread Sébastien Mouren
2008/11/3 Pally Sandher [EMAIL PROTECTED]: I know there is a long-winded way of doing this which bloats my MSI by having duplicates of the files in it but I was wondering if there's any easier/cleaner way of achieving the same thing. Basically I have 2 directories which are set by

Re: [WiX-users] CustomAction after Install or Repair?

2008-11-04 Thread Eric Maines
That fixed it. TY Eric Date: Mon, 3 Nov 2008 14:09:41 -0800From: Ian Elliott (Excell Data Corporation) [EMAIL PROTECTED]Subject: Re: [WiX-users] CustomAction after Install or Repair?To: General discussion for Windows Installer XML

Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread Richard
In article [EMAIL PROTECTED], =?UTF-8?Q?S=C3=A9bastien_Mouren?= [EMAIL PROTECTED] writes: 2008/10/31 Richard [EMAIL PROTECTED]: Put in a custom action that forces a failure (type 19 IIRC) when the license agreement property has not been set. [...] Please use a standard action

[WiX-users] Searching for a way to Or mathematically a value

2008-11-04 Thread David Bartmess
I'm converting a project over to Wix from Innosetup, and I have a value stored in the register as an OR'd value, which I need to check to see if a particular module is installed. Is there a mathematical OR for use in the condition? Thanks! David Bartmess Wall Street On Demand [EMAIL

Re: [WiX-users] Secured Strings in Log?

2008-11-04 Thread Pally Sandher
http://msdn.microsoft.com/library/aa370308.aspx http://msdn.microsoft.com/en-gb/library/aa370842(VS.85).aspx 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**

Re: [WiX-users] Change the title during install

2008-11-04 Thread Alexander Shevchuk
Title column in Feature table (http://msdn.microsoft.com/en-us/library/aa368585(VS.85).aspx) has type Text (http://msdn.microsoft.com/en-us/library/aa372072(VS.85).aspx). Things like [PROPERTYNAME] are valid in Formatted type (http://msdn.microsoft.com/en-us/library/aa368609(VS.85).aspx).

Re: [WiX-users] Change the title during install

2008-11-04 Thread Yuri Sakharov
Thank you for explanation in detail, Alex. Yuri - Original Message - From: Alexander Shevchuk [EMAIL PROTECTED] To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Tuesday, November 04, 2008 18:26 Subject: Re: [WiX-users] Change the title

Re: [WiX-users] Service installation using specified user / password.

2008-11-04 Thread Foster, Richard - PAL
Never mind... Problem located. Yes, I *had* flipped the bozo bit... Big time! When I finally did a completely clean build today things suddenly started working... So I poked around in the bad msi file I still had available. The username, domain and password were all getting set correctly by

[WiX-users] Using Heat to Generate COM Interop registration code

2008-11-04 Thread Meineck, Dan
Hi there, I have used heat to generate the XML code to register a COM interop assembly. The problem is when compiling in Visual Studio using Votive on WIX3 I get the error: The Class/@Server attribute was not found When inspecting the XML, there is as suggested no Server attribute

Re: [WiX-users] WindowsFolder Property is not resolved properly inside merge module

2008-11-04 Thread hegsie
Hi, Did u ever get the custom action working when using the [WindowsFolder] property? I use the line below inside the msi wxs file and still no luck... CustomAction Id=SetWindowsFolder Property=WindowsFolder.msm_guid Value=[WindowsFolder]/ InstallExecuteSequence Custom

Re: [WiX-users] WindowsFolder Property is not resolved properly inside merge module

2008-11-04 Thread hegsie
Hi, Did u ever get the custom action working when using the [WindowsFolder] property? I use the line below inside the msi wxs file and still no luck... CustomAction Id=SetWindowsFolder Property=WindowsFolder.msm_guid Value=[WindowsFolder]/ InstallExecuteSequence Custom

Re: [WiX-users] WindowsFolder Property is not resolved properly inside merge module

2008-11-04 Thread hegsie
Hi, Did u ever get the custom action working when using the [WindowsFolder] property? I use the line below inside the msi wxs file and still no luck... CustomAction Id=SetWindowsFolder Property=WindowsFolder.msm_guid Value=[WindowsFolder]/ InstallExecuteSequence Custom

Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread shibo
Phil, Thanks for your replies. 1. Our suite has several components, some are command line applications. So displaying the license at the first usage like Acrobat will not work for us. 2. Command line installation will help us auto-testing our installer. It will also enable our customers to do

Re: [WiX-users] One patch to rule them all

2008-11-04 Thread Bryan Turner
Chad, I may not be fully understanding your requirements, but it sounds like you want to create a patch that does not patch every file in the installer? I have not yet tried to create patches with WIX, I still use msimsp to create patches with a .pcp file for the input, so I cant tell you the

Re: [WiX-users] One patch to rule them all

2008-11-04 Thread Chad Miles
Oh no, I'm not asking for help. I was offering a few suggestions to the original poster. Baselining the msi is the way we do it, and do a diff/patch validation between the baselined msi and a daily msi. Thanks though. On Tue, Nov 4, 2008 at 12:25 PM, Bryan Turner [EMAIL PROTECTED]wrote:

Re: [WiX-users] Service installation using specified user / password.

2008-11-04 Thread Wilson, Phil
I suspect Rob's point is that you think that's what you're doing but somewhere the property names are not exactly correct. For example, are all those spaces after AdminUser an artifact of your email (or the log) or does it really have lots of spaces at the end? The ErrLook.exe program in

Re: [WiX-users] Why doesn't Windows Installer remove the oldversion in an upgrade?

2008-11-04 Thread Wilson, Phil
I think the first versions (VS.NET) of the Visual Studio Setup Projects had this issue - you didn't by any chance build your setup by reverse-engineering or Dark-ing an older VS Setup Project, did you? Phil Wilson -Original Message- From: divo [mailto:[EMAIL PROTECTED] Sent: Monday,

Re: [WiX-users] Custom action with elevated privileges doesn't work

2008-11-04 Thread Wilson, Phil
You must still have a deferred custom action after InstallFinalize, that's what error 2762 is saying. Are you sure your system is clean? Is it possible that you're really just going into a repair mode and having an already-installed product run? Or it's an upgrade and the uninstall of the

Re: [WiX-users] Searching for a way to Or mathematically a value

2008-11-04 Thread Rob Mensching
Yes, some. -Original Message- From: David Bartmess [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 08:19 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Searching for a way to Or mathematically a value I'm converting a project over to Wix from

Re: [WiX-users] Installing the same files in 2 directories.

2008-11-04 Thread Rob Mensching
A couple months before WiX 3.0.3725.0 or so. -Original Message- From: Brian Simoneau [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 06:01 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Installing the same files in 2 directories. What

Re: [WiX-users] Service installation using specified user / password.

2008-11-04 Thread Rob Mensching
Logs don't lie. smile/ -Original Message- From: Foster, Richard - PAL [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 05:24 To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Service installation using specified user / password. Never mind...

Re: [WiX-users] Why doesn't Windows Installer remove the oldversion in an upgrade?

2008-11-04 Thread divo
Hi, I found a way to solve the problem: 1. Supressing FindRelatedProducts in the InstallUISequence InstallUISequence FindRelatedProducts Suppress=yes / /InstallUISequence 2. Executing FindRelatedProducts when the Next button is clicked in the install scope dialog: Control Id=Next

Re: [WiX-users] Custom action with elevated privileges doesn't work

2008-11-04 Thread Ian Elliott (Excell Data Corporation)
If I'm reading this correctly you are trying to launch an exe (which the program installed) before InstallFinalize. I'm not sure if that will work. The recommended way is to launch at the very end using an immediate custom action. -Original Message- From: Wilson, Phil [mailto:[EMAIL

Re: [WiX-users] Certificate install to local machinefailswithcode 26352

2008-11-04 Thread Chris Bardon
I checked out the latest weekly build, and it looks like the problem is still there. The source for the build is also identical to what was there before-Rob, did you change anything? -Original Message- From: Chris Bardon [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2008 1:13

Re: [WiX-users] Certificate install to local machinefailswithcode 26352

2008-11-04 Thread Rob Mensching
Yes, but I didn't make the 4624 build. If you look in CVS then you'll see the change. -Original Message- From: Chris Bardon [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 10:51 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Certificate

Re: [WiX-users] Custom action with elevated privileges doesn't work

2008-11-04 Thread Alexander Shevchuk
I have not tested it, but maybe the problem is that deferred custom action to launch executable is asynchronous. Hard to say without seeing the code. -Original Message- From: Ian Elliott (Excell Data Corporation) [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 10:34 AM To:

Re: [WiX-users] Why doesn't Windows Installer remove the oldversion in an upgrade?

2008-11-04 Thread divo
Hi Bob, Thanks for your answer, I totally understand that upgrading across contexts doesn't make much sense. However, that is not my problem. Maybe I wasn't specific enough with my explanation, so here is my scenario (pretty much a standard setup scenario IMHO): The setup is similar to the

[WiX-users] registry permissions on new groups

2008-11-04 Thread Ian Elliott (Excell Data Corporation)
Hi, I've been tasked with the following: 1.)Create a new group 2.)Add permissions to the new group on a registry key I couldn't find a way to create a new group via wix so ended up using a custom action which calls net.exe. I'm having trouble trying to use PermissionsEx to set

[WiX-users] Debugging a DTF Managed Custom Action

2008-11-04 Thread Dave Largen
Is there any way to step into a managed DTF Custom Action with a visual studio debugger? With regular managed custom actions I can attach directly to the process running the custom action and step through the code. Thanks, Dave

Re: [WiX-users] registry permissions on new groups

2008-11-04 Thread Chad Miles
WiX doesn't support group creation I believe. On Tue, Nov 4, 2008 at 2:20 PM, Ian Elliott (Excell Data Corporation) [EMAIL PROTECTED] wrote: Hi, I've been tasked with the following: 1.)Create a new group 2.)Add permissions to the new group on a registry key I couldn't find a

Re: [WiX-users] Why doesn't Windows Installer remove the oldversion in an upgrade?

2008-11-04 Thread Bob Arnson
divo wrote: 2. Executing FindRelatedProducts when the Next button is clicked in the install scope dialog: It doesn't have to be called in the UI sequence at all. It's scheduled to run in the execute sequence if not run during the UI sequence. And that avoids the need to disable the Back

Re: [WiX-users] registry permissions on new groups

2008-11-04 Thread Bob Arnson
Ian Elliott (Excell Data Corporation) wrote: I'm having trouble trying to use PermissionsEx to set permissions for the new group. Is this possible or does it only allow setting permissions for standard groups such as Network Service, Administrators, etc? They're formatted strings, so

Re: [WiX-users] One patch to rule them all

2008-11-04 Thread Rob Lange
I tried removing the DLL from the admin upgrade image, but since the patch was still created with different baseline(v1) images (same GUIDs, just one different file), it fails when applying the patch. Chad, you're kind of talking over my head. Could you be a little more verbose with your

Re: [WiX-users] registry permissions on new groups

2008-11-04 Thread Ian Elliott (Excell Data Corporation)
Thanks, Bob. The scheduling is correct so I have an error somewhere. I should be able to find it now. -Original Message- From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 11:34 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users]

[WiX-users] Error 2753 on Merge Module...

2008-11-04 Thread John D. Marinuzzi
Hello All, I have Merge tag under a Directory (the Target Directory), and then use the MergeRef as an optional install Feature. If I do not select that feature, then I get the error 2573. I am obviously doing something incorrect. How would Igo about including the Merge file only if the user

Re: [WiX-users] Error 2753 on Merge Module...

2008-11-04 Thread Rob Mensching
From what you described, you did. -Original Message- From: John D. Marinuzzi [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 11:50 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Error 2753 on Merge Module... Hello All, I have Merge tag under a Directory (the

Re: [WiX-users] Searching for a way to Or mathematically a value

2008-11-04 Thread David Bartmess
OK, I've searched on mathematical or on the wix list, and in msdn. I can't seem to find any reference to mathematical calculations in a condition... Can you tell me the syntax of the condition? -Original Message- From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Tuesday, November

Re: [WiX-users] Error 2753 on Merge Module...

2008-11-04 Thread John D. Marinuzzi
Well, yes, but if they don't want the option, I don't want an error. I guess I should have asked how I go about that. :-) Thanks, John -Original Message- From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 3:37 PM To: General discussion for Windows

Re: [WiX-users] Searching for a way to Or mathematically a value

2008-11-04 Thread Rob Mensching
http://msdn.microsoft.com/en-us/library/aa368012.aspx - Conditional Statement Syntax Bitwise Numeric Operators The following table shows the bitwise numeric operators in conditional expressions. These operators can occur between two integer values. Operator Meaning Bitwise AND, TRUE if the

Re: [WiX-users] Error 2753 on Merge Module...

2008-11-04 Thread Rob Mensching
I don't know. The error is not well defined right now. Did you look in a verbose log file? Did you verify the Components containing the file are in the Action: and Installed: state that you want? -Original Message- From: John D. Marinuzzi [mailto:[EMAIL PROTECTED] Sent: Tuesday,

[WiX-users] Help : Creating MSM file to be run through VS msi

2008-11-04 Thread tomer saban
Hi , I need to create an msm file (using Wix) with shortcuts on the programFileMenu. The problem is that the client for this msm is a Visual Studio MSI project. in VS there is the issue of retargetable folder. When i am creating basic msm using Wix i am able to create a shortcut but when i am

Re: [WiX-users] Error 2753 on Merge Module...

2008-11-04 Thread Wilson, Phil
You typically get this error when you try to call a custom action that refers to a file in the MSI, but that file is not actually installed because (for example) there is a higher version of the file already on the system. In your case, you have a custom action that refers to a file that

Re: [WiX-users] Service installation using specified user / password.

2008-11-04 Thread Foster, Richard - PAL
I'm pretty certain... It's the same user, domain and password as I log in with before performing the installation! Forgive my ignorance, but where did you look to determine that error code 0x8007007b meant invalid name? All the searches I performed on that error code led me to things which

Re: [WiX-users] registry permissions on new groups

2008-11-04 Thread Ian Elliott (Excell Data Corporation)
I'm still having trouble with this. Say I create a group called Group A. Now, if I want to add permissions for this group to a registry key, what would the PermissionEx tag look like? Here is one I have tried: Component Id=CID_blah Guid={some guid} DiskId=1 RegistryKey Id=RID_blah Root=HKLM

[WiX-users] Deploying WCF Service

2008-11-04 Thread Kiran Subhedar (Sogeti)
Hi, I need to deploy an asp.net WCF service as an individual website in IIS over HTTPS. Does WIX support to install\associate certificates to websites? What measures do I need to take? I have used WIX previously to deploy an asp.net website to IIS but this time the web service will be over

Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread Sébastien Mouren
2008/11/4 Richard [EMAIL PROTECTED]: In article [EMAIL PROTECTED], =?UTF-8?Q?S=C3=A9bastien_Mouren?= [EMAIL PROTECTED] writes: 2008/10/31 Richard [EMAIL PROTECTED]: Put in a custom action that forces a failure (type 19 IIRC) when the license agreement property has not been set.

[WiX-users] Autogen GUIDs for components

2008-11-04 Thread Brownfield, Cory M.
I'm using WiX version 3.0.4617.0. A component can have its GUID defined like this : Guid=* if under a standard directory. Here's a portion of the error message returned when trying to install to a nonstandard location: Since this path is not rooted in one of the standard directories (like

Re: [WiX-users] Autogen GUIDs for components

2008-11-04 Thread Brian Rogers
Hey Cory, This might not be the answer you are looking for, but I can point into the code were you can take a look at what is going on. http://wix.cvs.sourceforge.net/viewvc/wix/wix/src/wix/Binder.cs?revision=1.70view=markup Line 2696 starts the method. Line 2807 starts the if statement. I

Re: [WiX-users] Debugging a DTF Managed Custom Action

2008-11-04 Thread Christopher Karper
There is a way using Environment variables to set a breakpoint, but I've found that to be more trouble than it's worth. You can put a call at the beginning of your CA to MessageBox.Show, and then when that pops up, you can attach to the process then. Make sure you attach to the CA managed

[WiX-users] Problems with ComPlus registration of Managed Assembly

2008-11-04 Thread Shane Holder
I have the following in my .wxs and I'm trying to register the dll for com interop but when I run the install it fails with the log information below. Any thoughts as to what is going on? Shane Holder Wix_64 version 3.0.6424.0. ?xml version=1.0 encoding=UTF-8? Wix

Re: [WiX-users] Autogen GUIDs for components

2008-11-04 Thread Rob Mensching
Auto-generated Component GUIDs are still a bit experimental although they are growing on me. The limitations are in place because that is how the WiX toolset ensures that the GUID is stable and unique. -Original Message- From: Brownfield, Cory M. [mailto:[EMAIL PROTECTED] Sent: