Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread Anil Patel
e("{14CCA315-92CE-48E7-8C7C-87923F770B47}"); > > EnumFeatures(s); > > } > > } > > } > > > > //useful links > > http://source.winehq.org/source/include/msi.h > > http://msdn.microsoft.com/en-us/library/aa369426(v=VS.85).aspx

Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread Peter Shirtcliffe
al Message- From: Anil Patel [mailto:apatel...@googlemail.com] Sent: 25 August 2011 16:43 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Identifying Features that have been installed The numeric codes for the symbolics can be looked up here but I'm sure there

Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread Anil Patel
ld always use the COM library if you're not comfortable with the C >> API calls. Add a COM reference to "Microsoft Windows Installer Object >> Library" to your project... >> >> Installer.get_Features and Installer.get_FeatureState look like they might >>

Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread Anil Patel
r.get_Features and Installer.get_FeatureState look like they might > be useful. > > -Original Message- > From: Anil Patel [mailto:apatel...@googlemail.com] > Sent: Thursday, August 25, 2011 11:12 > To: General discussion for Windows Installer XML toolset. > Subject: Re

Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread James Johnston
From: Anil Patel [mailto:apatel...@googlemail.com] Sent: Thursday, August 25, 2011 11:12 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Identifying Features that have been installed Hi Peter, Really appreciate your feedback on this. The MsiGetEnumsFeatu

Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread Peter Shirtcliffe
riginal Message- From: Anil Patel [mailto:apatel...@googlemail.com] Sent: 25 August 2011 12:12 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Identifying Features that have been installed Hi Peter, Really appreciate your feedback on this. The MsiGetEnumsFeatues(

Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread Anil Patel
l Message- > From: Anil Patel [mailto:apatel...@googlemail.com] > Sent: 25 August 2011 11:08 > To: General discussion for Windows Installer XML toolset. > Subject: [WiX-users] Identifying Features that have been installed > > Hello, > > I have a configuration program that i

Re: [WiX-users] Identifying Features that have been installed

2011-08-25 Thread Peter Shirtcliffe
MsiEnumFeatures() http://msdn.microsoft.com/en-us/library/aa370098%28v=vs.85%29.aspx -Original Message- From: Anil Patel [mailto:apatel...@googlemail.com] Sent: 25 August 2011 11:08 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Identifying Features that

[WiX-users] Identifying Features that have been installed

2011-08-25 Thread Anil Patel
Hello, I have a configuration program that is run manually by a user (following a new install or a change to an existing installation) which allows the user to configure the installed features. There is a requirement to disable the configuration of features not installed by the user. The questio