Create a batch file "uninstall.bat" (name does not matter) with the following command line:
"Path_to_setup_file\setup.exe" -L0009 --ResponseFile="Path_to_setup_file\response.ini" -f1 "c:\setup.log"
Path_to_setup_file above should be replaced with actual path to the setup.exe for the version you are trying to uninstall. Use the below response file. Response file should be named response.ini and should be saved in the same location as setup.exe.
[Installer]
PropertiesFilesOverwrite=FALSE
EnableTracing=FALSE
HideAllDialogs=TRUE
ForceReboot=TRUE
PreventReboot=FALSE
CheckTCPIP=TRUE
CheckIIS=TRUE
CheckSP=TRUE
CreateShortcuts=TRUE
CheckRenameOperations=TRUE
AnalyticsOverwrite=FALSE
TutReportingOverwrite=FALSE
TutDeliveryOverwrite=FALSE
BackupFiles=FALSE
RunConfigWizard=FALSE
StopAllServices=TRUE
StopIIS=TRUE
EnableASPServices=FALSE
ConfigWizardResponseFile=
RegistrySizeReq=
LogFile=
[Welcome]
HideDialog=TRUE
RemoveAll=TRUE
[WebVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=MicroStrategy
RemoveVD=YES
[MobileVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=MicroStrategyMobile
RemoveVD=YES
[PortalVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=NarrowcastServer
RemoveVD=YES
[WebServicesDirectory]
HideDialog=TRUE
VirtualDirectory=MicroStrategyWS
RemoveVD=YES
[WebMMTVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=WebMMT
RemoveVD=YES
[Finish]
HideDialog=TRUE
If you have better solution, please feel free to post comments. The above script and response worked fine for me.
"Path_to_setup_file\setup.exe" -L0009 --ResponseFile="Path_to_setup_file\response.ini" -f1 "c:\setup.log"
Path_to_setup_file above should be replaced with actual path to the setup.exe for the version you are trying to uninstall. Use the below response file. Response file should be named response.ini and should be saved in the same location as setup.exe.
[Installer]
PropertiesFilesOverwrite=FALSE
EnableTracing=FALSE
HideAllDialogs=TRUE
ForceReboot=TRUE
PreventReboot=FALSE
CheckTCPIP=TRUE
CheckIIS=TRUE
CheckSP=TRUE
CreateShortcuts=TRUE
CheckRenameOperations=TRUE
AnalyticsOverwrite=FALSE
TutReportingOverwrite=FALSE
TutDeliveryOverwrite=FALSE
BackupFiles=FALSE
RunConfigWizard=FALSE
StopAllServices=TRUE
StopIIS=TRUE
EnableASPServices=FALSE
ConfigWizardResponseFile=
RegistrySizeReq=
LogFile=
[Welcome]
HideDialog=TRUE
RemoveAll=TRUE
[WebVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=MicroStrategy
RemoveVD=YES
[MobileVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=MicroStrategyMobile
RemoveVD=YES
[PortalVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=NarrowcastServer
RemoveVD=YES
[WebServicesDirectory]
HideDialog=TRUE
VirtualDirectory=MicroStrategyWS
RemoveVD=YES
[WebMMTVirtualDirectory]
HideDialog=TRUE
VirtualDirectory=WebMMT
RemoveVD=YES
[Finish]
HideDialog=TRUE
If you have better solution, please feel free to post comments. The above script and response worked fine for me.
Comments