Modify a existing software which is installed
Product name: IBM SPSS data collection. I have deployed this package via SCCM using the addlocal command to install only "SurveryReporter" feature
Now I need to install one more feature ( modify the install) called "Base professional" what command should I use to install this feature?
Answers (2)
msiexec /i ADDLOCAL=SurveryReporter,Baseprofessional /qb
try using msiexec /f <msi> REINSTALL=SurveryReporter,Base professional /qb
let me know how it goes. if it doesn't work we can try something else as well.
Comments:
-
Note that even if REINSTALL is set to ALL, only those features that were already installed previously are reinstalled. Thus, if REINSTALL is set for a product that is yet to be installed, no installation action will take place at all. - jagadeish 11 years ago
The following command should work in your case
Feature name does not allow space in it.. make sure that you are using correct feature name. Also it is case sensitive when you use it in ADDLOCAL property..
msiexec /i <msi> ADDLOCAL=SurveryReporter,Baseprofessional /qb
Comments:
-
Jagadeish.. Thanks a lot.. It works perfectly fine :) - Hariharan 11 years ago