Skip to main content

Posts

Showing posts with the label unattended

Uninstall MicroStrategy via Silent Install

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...