Installing Desktop > Uninstalling UNICOM Intelligence Desktop
 
Uninstalling UNICOM Intelligence Desktop
Use the Windows Control Panel to remove UNICOM Intelligence Desktop.
A message will be displayed when uninstallation is complete. The amount of time this takes depends on how many UNICOM Intelligence Desktop products you uninstall.
Uninstalling from the command line
You can remove using the command line. This is useful for system administrators who want to uninstall using “silent uninstallation”. A silent uninstallation runs on its own without intervention so users are not required to provide input to dialog boxes.
1 Open a command prompt. For example, in Windows, click Start and go to All Programs > Accessories > Command Prompt.
2 Change to the directory containing the installer file.
3 Enter a command in the following format to uninstall:
start /WAIT /s /v"/qn /l*v \"mylogfile\"
remove=ProductNames"
Command line options
start /WAIT
Optional. Tells the command prompt to wait until the command is finished before returning. This is very useful in a silent uninstallation, as otherwise the log needs to be continually examined to determine when the uninstallation is complete.
/s
Required. Hides the initialization dialog.
/v
Required. Passes parameters to the MsiExec.exe application.
/qn
Required. Runs the uninstallation without displaying the external user interface.
/l*v \"mylogfile\"
Optional. Runs the uninstallation with verbose logging, and logs to a specified .txt file.
remove=ProductNames
Required. Defines the products/features to uninstall. Replace ProductNames with one or more of the following. To uninstall multiple products, separate names with a comma (no spaces). To uninstall everything, use All.
Author
SurveyReporter
Professional
Paper
Scan
TranslationUtility
Examples
The following example uninstalls all UNICOM Intelligence Desktop applications without logging the installation:
/s /v"/qn remove=All"
The following example uninstalls UNICOM Intelligence Author and Survey Reporter, and logs the uninstallation messages to a file called C:\log2.txt:
/s /v"/qn /l*v \"C:\log2.txt\" remove=Author,
ReportsForSurveys"
The following example does the same as the previous example, but waits for the uninstallation to complete before returning to the command prompt:
start /WAIT /s /v"/qn /l*v \"C:\log2.txt\"
remove=Author,SurveyReporter"
See also
Uninstalling from the command line
Installing UNICOM Intelligence Desktop