I want to install Tools from the command line and get Tool A and Tool B, and
I also want to be able to install Tool A by itself from the command line.
Any help is appreciated.
William
You're after the ADDLOCAL property:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/addlocal.asp
Something like ADDLOCAL=ToolA
Hope this helps,
James
http://dotmsi.com
The ADDLOCAL property doesn't install all of the children of the feature, it
only installs the feature itself. So, if I say ADDLOCAL=Tools I get Tools but
I don't get Tool A or Tool B.
William
Did you get a chance to look at the link?
"The value of the ADDLOCAL property is a list of features that are delimited
by commas, and are to be installed locally"
ADDLOCAL=ToolA
Will install ToolA feature
and
ADDLOCAL=ToolB
Will install ToolB feature.
Hope that cleared it up!
I think you'll find that what he says is what he literally wants, he
want to include all subfeatures of a particular feature. I'm not sure
this is possible, if not what you have said is a non-idea workaround
(list all of the individual features).
You could have all features installed (INSTALLLEVEL) and depending on
your needs that may work.
Bye,
Dennis
I'm confused about this because I thought it installed child features by
default anyway? Surely it would defeat the whole concept of "child"
features if they were not automatically installed with the parent?
--
Gerry Hickman (London UK)
I don't know if you're still reading this as it was a while ago, but
what you say here causes me great concern! Are you saying TreeView
installers based on MSI technology such as Microsoft Office 2003 are
enumerating and passing lists of all child features when you choose a
top-level feature in the UI?
If I install the Excel feature from the command line, are you saying it
will FAIL to install the sub-features such as converters and filters?