Re: [WiX-users] Custom Action .net dll referring signed assembly

2009-12-21 Thread Ranganatha H C
ore the reference was created in your CA > project, or after? > > -Original Message----- > From: Ranganatha H C [mailto:ranganatha...@gmail.com] > Sent: Thursday, December 03, 2009 9:32 PM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users

Re: [WiX-users] Custom Action .net dll referring signed assembly

2009-12-21 Thread Ranganatha H C
ore the reference was created in your CA > project, or after? > > -Original Message----- > From: Ranganatha H C [mailto:ranganatha...@gmail.com] > Sent: Thursday, December 03, 2009 9:32 PM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users

Re: [WiX-users] Custom Action .net dll referring signed assembly

2009-12-03 Thread Ranganatha H C
:02 AM, Wilson, Phil wrote: > If you mean certificate signed, Windows is going to try to verify the > signature by going to the internet to validate it. This may be something to > do with the error. Where is the CA sequenced? > > Phil Wilson > > > -Original Message----

[WiX-users] Custom Action .net dll referring signed assembly

2009-12-03 Thread Ranganatha H C
Hey All, We have a signed .net assembly, it has some functionality(e.g, validate license key .. etc) While installing the application we need to validate the user entered license key. For this to happen we have create a WIX Custom Project , which refers the our signed .net assembly. The custom ac

Re: [WiX-users] Uninstalling a component when not used by any products

2009-09-29 Thread Ranganatha H C
> installed that use it. > > Brant Gurganus > http://gurganus.name/brant > > > > On Tue, Sep 29, 2009 at 7:49 AM, Ranganatha H C > wrote: > > Hi All, > > > > We need to install a MMC (Microsoft Management Console) snap-in on target > > mach

[WiX-users] Uninstalling a component when not used by any products

2009-09-29 Thread Ranganatha H C
Hi All, We need to install a MMC (Microsoft Management Console) snap-in on target machine.. We have several products... So a if MMC is installed by some other product on a machine we should not try to install it again... I have wrote the below custom action to install the MMC

[WiX-users] Return to different dialog from Spawn-dialog

2009-09-14 Thread Ranganatha H C
Hi All, In a dialog we need to show a confirmation message dialog on click of a Next button. 1 1 1 On click of ButtonYes button

Re: [WiX-users] How to check db2 installation on the machine in WIX

2009-09-10 Thread Ranganatha H C
Hi, One way would be to add Registry serach and assign the registry serach result to a property. Later you can use the property based on its value to check whether DB2 installed on the target machine or not. e.g To check IIS is installed or not Installed OR (IIS6SPLEVEL >= "#6" AND NO

[WiX-users] Populating Combo box items dynamically and clearing them

2009-09-08 Thread Ranganatha H C
Hi All, In a dialog we are trying to populate few of the databases in a ComboBox... Its working fine , and its showing databases in the combo The code is below inside a custom action written in C#. foreach (string database in databases) { Record lRecord =

Re: [WiX-users] Understanding component states

2009-09-04 Thread Ranganatha H C
Hi, What is there for your component causing issues in Attribute column in Component table . (You can use ORCA to see the table content in MSI) The below link may help. http://msdn.microsoft.com/hi-in/library/aa368007(en-us,VS.85).aspx