[WiX-users] feature component state source /local

2009-04-28 Thread sam desilva
what does it mean by feature component state how this state stored in registry.? what is the meaning of run-from-source or run-from-local it you give any wix example .with mentioning installation steps would be good; -- Reg

Re: [WiX-users] On Team Build and WiX, and why it hates me.

2009-04-28 Thread Christopher Karper
It's just a normal WixExtension. I have a compiler and decompiler extension in the project. All it does is turn some xml elements into table entries, etc. Here's what makes it tough for me to track down, whenever I try running this through candle in the debugger, it works fine. If I step thr

Re: [WiX-users] On Team Build and WiX, and why it hates me.

2009-04-28 Thread Bob Arnson
Christopher Karper wrote: >> '..\..\..\Install\WixExtension\WixExtension\bin\Release\WixExtension.dll' >> could not be loaded." Are you supplying an AssemblyDefaultFabricatorExtension attribute? Which version of WiX are you using? I don't see where you could get that mess

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-28 Thread Bob Arnson
Jan Bilek wrote: > When i try to define my own version of MsiRMFilesInUse like i've done > for FilesInUse, then i receive an error message saying than the > MsiRMFilesInUse dialog is already defined (error LGHT0130: The primary > key 'MsiRMFilesInUse' is duplicated in table 'Dialog'.). I had com

Re: [WiX-users] uninstalling certificates

2009-04-28 Thread Bob Arnson
Kalev Lember wrote: > The issue still occurs with latest weekly release (3.0.5224). > Please file a bug with repro steps, authoring, and verbose logs so we can investigate. -- sig://boB http://joyofsetup.com/ -- R

Re: [WiX-users] WiX compiler extension and WiX Lib...

2009-04-28 Thread Bob Arnson
John Nannenga wrote: > Found my issue and resolved it... > What was the root cause? -- sig://boB http://joyofsetup.com/ -- Register Now & Save for Velocity, the Web Performance & Operations Conference from O'Reill

Re: [WiX-users] Feature condition

2009-04-28 Thread John Nannenga
Reference this: http://msdn.microsoft.com/en-us/library/aa371662(VS.85).aspx and probably this... INSTALLLEVEL: http://msdn.microsoft.com/en-us/library/aa369536(VS.85).aspx From: MYFLEX [shrinuen...@gmail.com] Sent: Tuesday, April 28, 2009 6:57

Re: [WiX-users] WiX compiler extension and WiX Lib...

2009-04-28 Thread John Nannenga
Found my issue and resolved it... Cheers... From: John Nannenga [john.nanne...@microsoft.com] Sent: Tuesday, April 28, 2009 2:18 PM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] WiX compiler extension and WiX Lib... Howdy

Re: [WiX-users] Reference custom directory

2009-04-28 Thread dkijc
Hi Brian, I forgot to mention that my app is hosted on iis so it's a web project installer hence I do not need to specify a installdir. Also the thumbnails are fetched from my app dynamically upon users request so all our app needs to know is the path to the folder where they store the thumbna

Re: [WiX-users] Reference custom directory

2009-04-28 Thread Brian Bakkebo
Hi Dk, ok trying to break this down for you. 1. You want to install the web app to a server based on a directory they select, etc. With this you could use the installdir to accomplish through wix. 2. In the installer, you want to ask the question to download the thumbnails, next right. I know you

[WiX-users] Localizing setup dialog titles

2009-04-28 Thread Sudripta Nandy (Sarangsoft Corporation)
Will there be any problem if I try to localize the dialog title in my setup? I want to pick the string from the wxl file. In the wix documentation I see that the 'Title' attribute for the 'Dialog' element is not marked as localizable. Thanks. Sudripta. --

Re: [WiX-users] Reference custom directory

2009-04-28 Thread dkijc
Hi Brian, Thanks alot for the suggestion, however, I think you misunderstood my question. Or I probably mislead you haha. Here is the dilemma. Our company has a server application and my teams' product will be residing in the same machine. My application talks to the server to send a playlist t

Re: [WiX-users] Heat 3.0.4923 vs 3.0.5217 vb6 dll output

2009-04-28 Thread Roy Abou Assaly
I have filed the following bug: https://sourceforge.net/tracker/?func=detail&atid=642714&aid=2783049&group_id=105970 and included test cases and the binary where you can reproduce how light is broken on the COM VB6 WiX output from Heat from version 3.0.4923 to 3.0.5224. Please let me know if I c

Re: [WiX-users] On Team Build and WiX, and why it hates me.

2009-04-28 Thread Christopher Karper
This is incredibly unstable. So, this morning, I ran the candle command line shown from votive's output window myself in a CL window.. And it worked. So, I restarted VS2008, and rebuilt the project, and that was working too! So, I tried heading to the build server, and getting fuslogvw to work t

[WiX-users] WiX compiler extension and WiX Lib...

2009-04-28 Thread John Nannenga
Howdy folks; I'm building a WiX compiler extension. I've over-ridden WixExtension::GetLibrary to return my custom built WiX Lib. My WiX Lib has the following in it: When I build an MSI that references my compiler extension, I g

Re: [WiX-users] Major Upgrade: some files are randomly not installed

2009-04-28 Thread Wilson, Phil
Assuming I understand what you're trying to do with the downgrade, sequencing RemoveExistingProducts early in one of the documented places (such as after InstallInitialize and before any script actions) will accomplish a downgrade. That sequencing results in an uninstall of the existing product

Re: [WiX-users] On Team Build and WiX, and why it hates me.

2009-04-28 Thread Jason Ginchereau
Here's an idea: check the public-key-token of the assembly reference from your extension to wix.dll. If you're building the extension against wix.dll with one key but then trying to run it with wix.dll with a different key, the assembly loading may succeed but the types won't resolve as the same

Re: [WiX-users] On Team Build and WiX, and why it hates me.

2009-04-28 Thread Christopher Karper
fuslogvw says binding was successful. Any ideas? On Sat, Apr 25, 2009 at 11:32 AM, Bob Arnson wrote: > Christopher Karper wrote: > > 5.) I build the Installer project using the WixExtension... I get a > candle > > error "candle.exe(0,0): error CNDL0144: The extension > > '..\..\..\Install\WixE

Re: [WiX-users] Major Upgrade: some files are randomly not installed

2009-04-28 Thread little.forest
Hi Phil, Thank you for your reply. I did try "RemoveExistingProducts after InstallInitialize". It didn't work. I mean, old product was removed, but some files were not installed - because of version things. What we need is really simple - we just need the "down-grade" working. We surely would

[WiX-users] How to add an extra xmlns

2009-04-28 Thread Brian Kretzler
I'm using a preprocessing in a wxs file to pull in a wxi file. This wxi file contains XmlFile elements which requires using an additional xmlns. i.e. http://schemas.microsoft.com/wix/UtilExtension> http://schemas.microsoft.com/wix/UtilExtension";); But when I try to use Wix.A

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-28 Thread Jan Bilek
Hello and thanks for your support. I've managed to get rid off the FilesInUse (i've created own UI and defined the FilesInUse dialog with appropriate attributes), but the same method doesn't work for MsiRMFilesInUse dialog, which is being displayed during the uninstallation without UI. When i t

Re: [WiX-users] database drop during uninstallation

2009-04-28 Thread greenaj
The problems: 1) You need collect database SQL login creditentials. 2) The uninstall from Add/Remove programs (ARP) displays no gui. The solution I used was to disable the uninstall from ARP, only allowing "modify". From modify, there is a "Uninstall" or "Remove All" choice.

Re: [WiX-users] uninstalling certificates

2009-04-28 Thread Kalev Lember
Bob Arnson wrote: > Kalev Lember wrote: > >> I am having some trouble uninstalling certificates using IIsExtension. >> >> > > There have been a lot of certificate bug fixes recently; which version > of WiX are you using? The issue still occurs with latest weekly release (3.0.5224). --

Re: [WiX-users] Turn off licence in UI

2009-04-28 Thread Mike Scott
LOL I genuflect in admiration. -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: 28 April 2009 14:14 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Turn off licence in UI Mike Scott wrote: > > ... > > You

Re: [WiX-users] Version comparision

2009-04-28 Thread Bob Arnson
Hukumchand Shah wrote: > I am comparing two versions strings in wix. > MSI doesn't support that. Instead, use features like MinVersion of Upgrade/UpgradeVersion to find only the versions you're interested in. -- sig://boB http://joyofsetup.com/ -

Re: [WiX-users] Turn off licence in UI

2009-04-28 Thread Bob Arnson
Mike Scott wrote: > > ... > > You should standardize on proper American spelling. -- sig://boB http://joyofsetup.com/ -- Register Now & Save for Velocity, the Web Performance & Operations Confe

[WiX-users] Wix - Install dll that needs to be used by the setup process ?

2009-04-28 Thread Connatic
Hi i have a Wix project which is mainly working fine however i have a problem. How do i get Wix to Install & register a dll so that it can be used by the msi in the setup process ? The full problem; I have a custom action which calls a vb script file, this vb script file calls a dll with a Find

Re: [WiX-users] Turn off licence in UI

2009-04-28 Thread Mike Scott
I'm using wix3.0.5217.0-binaries with a modified version of WixUI_InstallDir.wxs from wix3.0.5217.0-sources which I've saved as WixUI_InstallDirNoLicense.wxs. --- MyApp-1.0.wxs looks like this: http://schemas.microsoft.com/wix/2006/wi";>

[WiX-users] Version comparision

2009-04-28 Thread Hukumchand Shah
Hi All, I am comparing two versions strings in wix. like in below code where INSTALLED_PRODUCTVERSION = previous installed version and CURRENTVERSION = current version of the product. OR But it works fine from 5.0.0 to 5.0.9 but when if INSTALLED_PRODUCTVERSION = 5.0.9 and CURRENTVERSION = 5.

Re: [WiX-users] database drop during uninstallation

2009-04-28 Thread Bob Arnson
Mark Sinnathamby wrote: > Where can I save the credentials in order to use them for dropping the > database during uninstallation? > You need to use DPAPI or some other secure storage approach. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] uninstalling certificates

2009-04-28 Thread Bob Arnson
Kalev Lember wrote: > I am having some trouble uninstalling certificates using IIsExtension. > There have been a lot of certificate bug fixes recently; which version of WiX are you using? -- sig://boB http://joyofsetup.com/ -

Re: [WiX-users] Turn off licence in UI

2009-04-28 Thread Bob Arnson
Mike Scott wrote: > error LGHT0094 : Unresolved reference to symbol > 'WixUI:WixUI_InstallDirNoLicense' in section 'Product:{5A0E9340-D3E6- > 1960-4EDF-9113801AB533}'. > How are you defining your set fragment? (Are you using WiX v2 for this? Neil's instructions apply to v3.) -- sig://boB htt

Re: [WiX-users] Wrong Assembly version in MsiAssemblyName table after

2009-04-28 Thread Bob Arnson
Dov Kleinman wrote: > Well, I've tried both "3.0.5217.0" and "3.0.5224.0". Still the same. > Any idea? > It appears to be by design, based on this comment in the code: // there is a bug in fusion that requires the assembly's "version" attribute // to be equal to or longer than the "fileVersion

[WiX-users] Feature condition

2009-04-28 Thread MYFLEX
I have multiple feature in my installer. based on a registry key values, i want to show the levels of the feature. like selected for installation and uninstallation. how to set the feature level at dynamically based on the registry values? I want to write a vbscript custom action. Please tell me h

Re: [WiX-users] Turn off licence in UI

2009-04-28 Thread Mike Scott
I tried this but couldn't get it to work. I understand everything up to: Then just include you new WixUI_Mondo.wxs in your project ... I suppose I don't understand enough about using fragments. I assume I have to pass the custom UI .wxs file to candle and then its .wixobj file to light,

Re: [WiX-users] Wrong Assembly version in MsiAssemblyName table after

2009-04-28 Thread Dov Kleinman
Bob Arnson wrote: > Sounds familiar -- try upgrading to the RC2 release for a fix. > Well, I've tried both "3.0.5217.0" and "3.0.5224.0". Still the same. Any idea? Thanks, Dov -- Register Now & Save for Velocity, the

[WiX-users] uninstalling certificates

2009-04-28 Thread Kalev Lember
Hello, I am having some trouble uninstalling certificates using IIsExtension. On one machine the certificates seem to install and uninstall fine, but on another Windows XP machine UninstallCertificates action fails. I guess it might be related to the fact that on the machine where uninstall fails,

[WiX-users] run from source feature /component

2009-04-28 Thread sam desilva
I've got a setup with 2 features, and option is "run from source" and corresponding component also set "Run from source." Component Id="Component_one" Guid ="ABA305CB-4C75-4a64-9963-115C2B1E82D8" DiskId="1" Location="source"> Feature Id="ProductFeature_one" Title="W

[WiX-users] database drop during uninstallation

2009-04-28 Thread Mark Sinnathamby
Hi, In my Wix installation, I've got a couple of executables, some windows services and a database. For creating the database, I use a custom dialog which gets the username, password and database name into properties, and these properties are used during the database component installation. But