Users may want to perform an unattended (silent) installation in order to automate the installation in Strategy This kind of installation does not use the graphical user interface and it is very useful for system administrators who do not want users to run the installation themselves. It is excellent for users who want to automate the installation through script via Windows Task Manager.
The silent install can be used for:
Upon setup completion, the SMS generates a Management Information Format (MIF) file.
There are two ways to generate the MIF file:
NOTE: Uninstallation in SMS also generates a corresponding MIF file if you use the command line with the switch
Uninstallation in SMS also generates a corresponding MIF file if users use the command line with the switch -m filename without extension
To perform an OEM silent installation on Microsoft Windows, create an installation response response.ini file for the Strategy products to install. It can be done using Notepad or WordPad. Obviously the products included in this file should be available in the CDKEY mentioned under the section User Registration in the entry <>License Key.
The following example has almost all products:
HideAllDialogs=TRUE
ForceReboot=TRUE
StopAllServices=TRUE
EnterpriseManagerOverwrite=TRUE
CreateShortcuts = TRUE
ShowConfigWizard = FALSE
RunConfigWizard = FALSE
StopIIS = TRUE
AnalyticsOverwrite = TRUE
TutReportingOverwrite = TRUE
EnableTracing = TRUE
ShowWelcomeScreen = FALSE
ConfigWizardResponseFile = response.ini
CheckTCPIP=TRUE
CheckIIS=TRUE
CheckSP=TRUE
OverwriteDSN = TRUE
HideDialog=TRUE
RemoveAll=FALSE
HideDialog=TRUE
UserName=Strategy Brasil
CompanyName=Strategy Inc.
LicenseKey=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
HideDialog=TRUE
Type=Typical
HideDialog=TRUE
TargetDirectory=C:\Program Files\Strategy
HideDialog=TRUE
### Visible Components ###
DesktopAnalystVisible=TRUE
DesktopDesignerVisible=TRUE
ArchitectVisible=TRUE
ProjectBuilderVisible=TRUE
ServerAdminVisible=TRUE
CommandManagerVisible=TRUE
EnterpriseManagerVisible=TRUE
ObjectManagerVisible=TRUE
IServerVisible=TRUE
SDKVisible=TRUE
AnalyticsModulesVisible=TRUE
NCSAdminVisible=TRUE
DeliveryEngineVisible=TRUE
SubscriptionEngineVisible=TRUE
SubscriptionPortalVisible=TRUE
JMSGatewayVisible=FALSE
WebGatewayVisible=FALSE
TutorialReportingVisible=TRUE
TutorialDeliveryInstallVisible=TRUE
TutorialDeliveryConfigureVisible=TRUE
WebReporterVisible=TRUE
WebAnalystVisible=TRUE
WebProfessionalVisible=TRUE
WebUniversalReporterVisible=TRUE
WebUniversalAnalystVisible=TRUE
WebUniversalProfessionalVisible=TRUE
WebServicesJSPVisible=FALSE
WebServicesASPNETVisible=TRUE
OfficeVisible=TRUE
eTrainerForWebVisible=TRUE
FunctionPluginVisible=FALSE
SequeLinkVisible=TRUE
IServerOLAPServicesVisible=TRUE
IServerReportServicesVisible=TRUE
### Components to Install (TRUE) or Remove (FALSE) ###
DesktopAnalystSelect=TRUE
DesktopDesignerSelect=TRUE
ArchitectSelect=TRUE
ProjectBuilderSelect=TRUE
ServerAdminSelect=TRUE
CommandManagerSelect=TRUE
EnterpriseManagerSelect=TRUE
ObjectManagerSelect=TRUE
IServerSelect=TRUE
SDKSelect=TRUE
AnalyticsModulesSelect=TRUE
NCSAdminSelect=TRUE
DeliveryEngineSelect=TRUE
SubscriptionEngineSelect=TRUE
SubscriptionPortalSelect=TRUE
TutorialReportingSelect=TRUE
TutorialDeliveryInstallSelect=TRUE
TutorialDeliveryConfigureSelect=TRUE
WebProfessionalSelect=TRUE
WebUniversalReporterSelect=TRUE
WebUniversalAnalystSelect=TRUE
WebUniversalProfessionalSelect=TRUE
WebServicesJSPSelect=FALSE
WebServicesASPNETSelect=TRUE
OfficeSelect=TRUE
WebServerASPNETSelect=TRUE
WebUniversalServerJSPSelect=TRUE
WebUniversalServerASPSelect=TRUE
eTrainerForWebSelect=TRUE
FunctionPluginSelect=
SequeLinkSelect=TRUE
IServerOLAPServicesSelect=TRUE
IServerReportServicesSelect=TRUE
HideDialog=TRUE
Name=Strategy
HideDialog=TRUE
OverwriteServerDefinition=FALSE
HideDialog=TRUE
VirtualDirectory=Strategy
ReconfigureVirtualDirectory=TRUE
HideDialog=TRUE
VirtualDirectory=NarrowcastServer
ReconfigureVirtualDirectory=TRUE
HideDialog=TRUE
VirtualDirectory=StrategyWS
ReconfigureVirtualDirectory=TRUE
HideDialog=TRUE
OverwriteDSN=FALSE
HideDialog=TRUE
VirtualDirectory=Strategy
ReconfigureVirtualDirectory=TRUE
HideDialog=TRUE
VirtualDirectory=NarrowcastServer
ReconfigureVirtualDirectory=TRUE
HideDialog=TRUE
VirtualDirectory=StrategyWS
ReconfigureVirtualDirectory=TRUE
HideDialog=TRUE
AllowBlankURL=FALSE
URL=http://localhost/StrategyWS/mstrws.asmx
HideDialog=TRUE
ConfigureExcel=TRUE
ConfigurePowerpoint=TRUE
ConfigureWord=TRUE
HideDialog=TRUE
SkipAccountSetting=FALSE
Login=xxxx
Password=xxxx
ServiceStartUp=AUTO
HideDialog=TRUE
SkipAccountSetting=FALSE
Login=xxxx
Password=xxxx
HideDialog=TRUE
HideDialog=TRUE
Create the setup.iss file in order to install via silent installation via the response file, as shown below:
Version=v7.00
File=ReponseFile
OverwrittenReadOnly=NotToAll
Name=Strategy
Version=8.0.2
Company=Strategy
Lang=0009
[{B339F3B3-E78C-45E8-B4D2-3C46C1C13663}-DlgOrder]
Count=0
The language used in this example is English, but there are other options as mentioned below:
Go to the command line and enter the command shown below:

Setup.exe --ResponseFile="C:\mstr\Response.ini" -s -f1C:\mstr\setup.iss -f2C:\mstr\setup.log
The TRUE means that the option should be both considered and installed.
The FALSE means that the option should not be neither considered nor installed.
For more information about the silent installs, refer to the Installation and Configuration Guide (C:\Program Files\Common Files\Strategy\Documentation\InstallationConfig.pdf).