Re: [WiX-users] WiX-users Digest, Vol 17, Issue 119

2007-10-24 Thread Simon Topley
Hi Richard, I assume this isn't done in the Media element as I can only see that you can specify that the cab is embedded and it's name.. Simon -- Message: 8 Date: Tue, 23 Oct 2007 09:24:31 -0600 From: Richard <[EMAIL PROTECTED]> Subject: Re: [WiX-users] Digital Sign

Re: [WiX-users] wix 2.0 to 3.0 - COM registration

2007-10-24 Thread Karim MacDonald
Not a direct answer, but if you run WiX 3.0's heat.exe against your 32-bit COM DLLs then it'll generate the right Class, AppID, Interface etc. output. -- View this message in context: http://www.nabble.com/wix-2.0-to-3.0---COM-registration-tf4682182.html#a13382551 Sent from the wix-users mailing

[WiX-users] Easy WiX way for a custom action to call multiple utility DLLs?

2007-10-24 Thread Karim MacDonald
If my CA in MyCA.dll needs to call a fn in MyUtils.dll then I'm currently expecting to have to write a separate pair of CAs that pull MyUtils.dll out of the Binary table and then delete it at end-of-setup. InstallShield provides just such a handy pair of Custom Actions (ISSETUPFILESEXTRACT & co.),

Re: [WiX-users] x64 and ProgramFilesFolder vs. ProgramFiles64Folder

2007-10-24 Thread Karim MacDonald
Geoff Finger-2 wrote: > > The specific problem in this case is the x64 installer was working > just fine but someone pointed out that one of the files was 32 bit and > thus should be installed to "Program Files (x86)" instead of the > normal Program Files folder. > On 64-bit Windows, ProgramFil

Re: [WiX-users] wix 2.0 to 3.0 - COM registration

2007-10-24 Thread Nitin
All my DLL's are .net assembly but they can be registered as COM. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karim MacDonald Sent: Wednesday, October 24, 2007 3:21 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] wix 2.0 to 3.0 - COM re

[WiX-users] AlwaysInstallElevated

2007-10-24 Thread Benas
On one of my Virtual PC's Custom Actions fails to execute. Log: MSI (c) (E0:F0) [14:10:03:142]: Machine policy value 'AlwaysInstallElevated' is 0 MSI (c) (E0:F0) [14:10:03:142]: User policy value 'AlwaysInstallElevated' is 0 <...> MSI (s) (70:B8) [14:10:37:218]: Executing op: CustomActionSchedu

Re: [WiX-users] A better TALLOW - PARAFFIN

2007-10-24 Thread Christopher Painter
Read this article and let me know if you have any more questions: http://geekswithblogs.net/Vagmi.Mudumbai/archive/2006/06/11/81426.aspx John Robbins <[EMAIL PROTECTED]> wrote: Christopher, I'm not even sure what you're asking. :) (I've never claimed to know much about Windows Inst

Re: [WiX-users] Feature selection conditions don't work on reinstall

2007-10-24 Thread Richard.Foster
I was under the impression that while it is only permitted to *trigger* one "NewDialog" operation, it is permitted to include definitions for several trigger operations as long as the conditions under which the separate dialogs are shown are mutually exclusive. I agree however that is not what the

[WiX-users] Checkbox does not recognize when it is checked

2007-10-24 Thread xyavier
I am trying to give the option to delete some extra files if the user checks a checkbox on uninstall. I can bypass the checkbox and make it delete the files but when the checkbox is present, it deletes the files whether it is checked or not. Any ideas what I am doing wrong? Code segments below. T

Re: [WiX-users] wixout file format

2007-10-24 Thread Kelly Leahy
Is anything in Wix 3.0 documented? Sorry. I just couldn't resist. Rob Mensching <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 10/23/2007 03:11 PM To 'Rob Mensching' <[EMAIL PROTECTED]>, 'Adam Majer' <[EMAIL PROTECTED]> cc wix-users@lists.sourceforge.net Subject Re: [WiX-users] wixout file

Re: [WiX-users] wix 2.0 to 3.0 - COM registration

2007-10-24 Thread Karim MacDonald
Nitin Chaudhari wrote: > > All my DLL's are .net assembly but they can be registered as COM. > Sorry, I should've looked more closely at your registry entries. FWIW, here's my take on the problem: http://www.nabble.com/heating-COM-componnents-and-getting-LGHT0130-on-generated-registry-data-tf2

Re: [WiX-users] wix 2.0 to 3.0 - COM registration

2007-10-24 Thread Strele Franz
Using registry keys is the recommended way of registering .NET Assemblies for COM Interop. http://msdn2.microsoft.com/en-us/library/aa367520.aspx "Use the Registry table instead of the Class table when you register COM Interop for an assembly." > -Ursprüngliche Nachricht- > Von: [EMAI

Re: [WiX-users] wix 2.0 to 3.0 - COM registration

2007-10-24 Thread Strele Franz
You can use the 'undocumented' "-scom" switch with heat.exe to generate only RegistryKey/RegistryValue-entries (instead of Class/ProgId/...). > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:wix-users- > [EMAIL PROTECTED] Im Auftrag von Strele Franz > Gesendet: Mittwoch, 24.

Re: [WiX-users] error in selection tree(urgent plz help)

2007-10-24 Thread Bob Arnson
shambhu kumar wrote: > > > > > There are many more UIText strings required for the selection tree control with different IDs. See http://msdn2.microsoft.com/en-us/library/aa371604.aspx for a list. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] x64 and ProgramFilesFolder vs. ProgramFiles64Folder

2007-10-24 Thread Bob Arnson
Geoff Finger wrote: > Instead what I found was a post claiming "I don't think you want to > reference ProgramFiles64Folder either. Use ProgramFilesFolder and > Windows Installer will put things in the correct directory based upon > the Component's Win64 setting." > That's not how it works. A 64

Re: [WiX-users] Installation order for Service Installs

2007-10-24 Thread Bob Arnson
Adam Majer wrote: > How can I structure this such that the merge module is installed > completely prior to installing the component? > That's not how Windows Installer works: Merge modules lose their identity when merged, so they're just a bunch of components in the .msi. Then, each resource

Re: [WiX-users] WiX-users Digest, Vol 17, Issue 119

2007-10-24 Thread Bob Arnson
Simon Topley wrote: > I assume this isn't done in the Media element as I can only see that you > can specify that the cab is embedded and it's name.. > Yes, you have multiple Media elements and use the DiskId attribute to control which components go into which .cab. -- sig://boB http://joyof

[WiX-users] wix.dll different?

2007-10-24 Thread koawmfot
for wix v3, build 3419, why is there a difference in the wix.dll that is installed with the msi and the version found in the zip file? if i install the msi to get the votive stuff and the xml references and stuff installed for VS, but then use binaries extracted into a temp directory to compile my

[WiX-users] Minimal UI doesn't paint license agreement

2007-10-24 Thread Scott Palmer
On 1/22/07, Goetz, Russ <[EMAIL PROTECTED]> wrote: > > Thanks to help from this group I am now able to specify which UI I wish > to use by passing the following to light.exe: -ext > WixUIExtension.dll-cultures:en-us and specifying say > > > > > > > > In my .wxs file. The minimal UI shows a lice

Re: [WiX-users] wix.dll different?

2007-10-24 Thread Bob Arnson
koawmfot wrote: > for wix v3, build 3419, why is there a difference in the wix.dll that > is installed with the msi and the version found in the zip file? It's a bug in the build process. For now, stick with the .msi copy. -- sig://boB http://joyofsetup.com/ -

Re: [WiX-users] Minimal UI doesn't paint license agreement

2007-10-24 Thread Bob Arnson
Scott Palmer wrote: > Is there a way to actually get the license agreement to show on the > license agreement screen without having to highlight the text or > adjust the scrollbar? I find that my license agreement is there - but > is not drawn until I try to manipulate the text control that it

Re: [WiX-users] wixout file format

2007-10-24 Thread Rob Mensching
I know you're being slightly flippant but truly the answer is, "Yes, the schema is all documented. The command-lines and the tools to use are documented." I'm happy for people to say, "Hey, such-and-such isn't documented. can I expect it to remain constant supported and all that good stuff?" I'l

Re: [WiX-users] Checkbox does not recognize when it is checked

2007-10-24 Thread Richard
In article <[EMAIL PROTECTED]>, xyavier <[EMAIL PROTECTED]> writes: > > I am trying to give the option to delete some extra files if the user checks > a checkbox on uninstall. I can bypass the checkbox and make it delete the > files but when the checkbox is present, it deletes the files whe

Re: [WiX-users] Feature selection conditions don't work on reinstall

2007-10-24 Thread Richard
In article <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> writes: > I was under the impression that while it is only permitted to *trigger* > one "NewDialog" operation, it is permitted to include definitions for > several trigger operations as long as the conditions under which the > separate dial

Re: [WiX-users] Installation order for Service Installs

2007-10-24 Thread Richard
In article <[EMAIL PROTECTED]>, Adam Majer <[EMAIL PROTECTED]> writes: > How can I structure this such that the merge module is installed > completely prior to installing the component? In addition to what Bob Arnson said, check your install execute sequence and look at the relative orderin

Re: [WiX-users] Invokoing DLL at the time of installation ...

2007-10-24 Thread Richard
In article <[EMAIL PROTECTED]>, V K Gangwar <[EMAIL PROTECTED]> writes: > I need to invoke a function (method) in a DLL and want to use return va= > lue of that function. How this can be done. The best practice is to minimize the amount of custom code that's running at install time. What

Re: [WiX-users] wix 2.0 to 3.0 - COM registration

2007-10-24 Thread Richard
In article <[EMAIL PROTECTED]>, "Nitin" <[EMAIL PROTECTED]> writes: > All my DLL's are .net assembly but they can be registered as COM. Regasm /File will dump out a registry file of all the registry values/keys that are needed to register your assembly. Is there some tool in WiX that will

Re: [WiX-users] wix.dll different?

2007-10-24 Thread Rob Mensching
It is a mistake in the build process. I've been screwing around with the public key and the way that we store it on the build machine and the way we reference it in the build system and I apparently got things crossed somewhere. I'll get into it before the next build. Thanks for pointing this

Re: [WiX-users] Installation order for Service Installs

2007-10-24 Thread Adam Majer
Bob Arnson wrote: > Adam Majer wrote: >> How can I structure this such that the merge module is installed >> completely prior to installing the component? >> > > That's not how Windows Installer works: Merge modules lose their > identity when merged, so they're just a bunch of components in the

Re: [WiX-users] wixout file format

2007-10-24 Thread Kelly Leahy
Yep... I kinda forgot the smiley in my email :) So where is the 'command lines and the tools to use' documentation located, precisely? Kelly Rob Mensching <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 10/24/2007 09:05 AM To "'Kelly Leahy'" <[EMAIL PROTECTED]> cc [EMAIL PROTECTED], wix-use

Re: [WiX-users] Installation order for Service Installs

2007-10-24 Thread Adam Majer
Richard wrote: > In article <[EMAIL PROTECTED]>, > Adam Majer <[EMAIL PROTECTED]> writes: > >> How can I structure this such that the merge module is installed >> completely prior to installing the component? > > In addition to what Bob Arnson said, check your install execute > sequence and

Re: [WiX-users] Installation order for Service Installs

2007-10-24 Thread Chad Petersen
We have one service in the installer that replies on a file being installed to the GAC, so the service can't be started until after InstallFinalize. I use a deferred Custom Action to NET START and it seems to be working fine for our customers. Just thought I'd mention that option. -Original M

Re: [WiX-users] Installation order for Service Installs

2007-10-24 Thread Wilson, Phil
That's correct, Vista uses the same SxS model with Fusion to install the C++ runtimes as GAC installation, so the runtimes aren't available until after InstallFinalize. Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adam Majer Sent: Wednes

Re: [WiX-users] wixout file format

2007-10-24 Thread Rob Mensching
Well, “-?” is documentation. The tools are supposed to be documented in WiX.chm… although, I expect we’re behind on that and I’d happily take bugs assigned to me to address. From: Kelly Leahy [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 24, 2007 09:50 To: Rob Mensching Cc: wix-u

Re: [WiX-users] AlwaysInstallElevated

2007-10-24 Thread Wilson, Phil
Most likely your custom action is crashing. If it works when you run it elevated then it's probably a security issue. Are you checking the results of API calls? Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Benas Sent: Wednesday, October 24, 2007 4:30 AM To: wix-u

Re: [WiX-users] wixout file format

2007-10-24 Thread Adam Majer
Rob Mensching wrote: > schema is all documented. The command-lines and the tools to use are > documented.” I’m happy for people to say, “Hey, such-and-such isn’t > documented… can I expect it to remain constant supported and all that > good stuff?” I’ll then go into the tools and see if it is a

[WiX-users] Sql extension problem

2007-10-24 Thread jrcolons
Trying to add a reference to the WixSqlExtension.dll on my project, and adding xmlns:Sql="http://schemas.microsoft.com/wix/SqlExtension"; I always get this error: The extension 'Microsoft.Tools.WindowsInstallerXml.Extensions.SqlCompiler' uses the same xml schema namespace, 'http://schemas.mic

Re: [WiX-users] Minimal UI doesn't paint license agreement

2007-10-24 Thread Scott Palmer
On 10/24/07, Bob Arnson <[EMAIL PROTECTED]> wrote: > > Scott Palmer wrote: > > Is there a way to actually get the license agreement to show on the > > license agreement screen without having to highlight the text or > > adjust the scrollbar? I find that my license agreement is there - but > > is n

[WiX-users] Minimum Requirements for msi on client machine.

2007-10-24 Thread Jaguar 36
Hi, There was a strange issue which occured. I created a msi which was running perfectly on mine as well as another developer's machine, but it just "ended prematurely" when we copied this msi to another colleague (non-developer)'s machine. Of special notice is that it ended when the pressing o

Re: [WiX-users] Minimum Requirements for msi on client machine.

2007-10-24 Thread Silvio Massari
Hi, do you compile your custom action in Debug or in Release? Whic version of C++ are you using? Be sure to deploy the VC runtime too. Run depends.exe tool on your friend´s machine and validate each dependence of your custom action dll. Regards Silvio. -Original Message- From: [EMAIL

Re: [WiX-users] Checkbox does not recognize when it is checked

2007-10-24 Thread xyavier
I did look at them in Orca, it looks OK to me. My verbose log is as follows when it is not checked: MSI (s) (AC:D0) [14:19:52:507]: Component: MyComponent; Installed: Local; Request: Absent; Action: Absent PROPERTY CHANGE: Deleting DELALL property. Its current value is '1'. The log is the sa

Re: [WiX-users] Feature selection conditions don't work on reinstall

2007-10-24 Thread Richard
In article <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> writes: > Having said that, the scenario which prompted the question may still not > work exactly as desired - specifically that the dialog which > *immediately* follows the one showing the feature tree varies based on > the presence (or ot

Re: [WiX-users] Checkbox does not recognize when it is checked

2007-10-24 Thread Richard
In article <[EMAIL PROTECTED]>, xyavier <[EMAIL PROTECTED]> writes: > MSI (s) (AC:D0) [14:19:52:507]: Component: MyComponent; Installed: Local; > Request: Absent; Action: Absent OK, this says your component is installed and will be removed. Isn't there anything later in the log about f

Re: [WiX-users] Minimum Requirements for msi on client machine.

2007-10-24 Thread Jaguar 36
Hi Thanks Silvio!! The c++ was done in debug mode and we shifted to release mode and it works perfectly! Thanks! > Date: Wed, 24 Oct 2007 16:39:31 -0300> From: [EMAIL PROTECTED]> To: > wix-users@lists.sourceforge.net> Subject: Re: [WiX-users] Minimum > Requirements for msi on client machine

Re: [WiX-users] Installation order for Service Installs

2007-10-24 Thread Adam Majer
Wilson, Phil wrote: > That's correct, Vista uses the same SxS model with Fusion to install the > C++ runtimes as GAC installation, so the runtimes aren't available until > after InstallFinalize. Solution: * Install merge module if (VersionNT < 600) OR Version9X . In other words, install the m

Re: [WiX-users] Minimal UI doesn't paint license agreement

2007-10-24 Thread Bob Arnson
Scott Palmer wrote: > Ok, thanks. It's funny that the Mondo UI doesn't show the same > problem with the same RTF file. Must be related to the dimensions of > the control or something. That's because the EULA isn't shown in the first dialog in that set. That's the trigger. -- sig://boB http:

Re: [WiX-users] Sql extension problem

2007-10-24 Thread Bob Arnson
jrcolons wrote: > The extension 'Microsoft.Tools.WindowsInstallerXml.Extensions.SqlCompiler' > uses the same xml schema namespace, > 'http://schemas.microsoft.com/wix/SqlExtension', as previously loaded > extension 'Microsoft.Tools.WindowsInstallerXml.Extensions.SqlCompiler'. > Please either remov

[WiX-users] uninstall from control pannel does not remove all files

2007-10-24 Thread chandan Koushik
Hi All, i have installed a web application using wix3.0 .the installation was successful.But when i try to uninstall the application using control panel>>add remove programs, the application vanishes from the add remove list but all the files still exists physically on the disk.Even the entr