Discussion
There are two ways in which a silent uninstall can be performed.
Using a Response File
To run an uninstallation using a response file:
1. Prepare a response file for the uninstallation (.iss) by running Setup.exe with the /r argument:
Setup.exe /r
2. Locate the Setup.iss file generated in the Windows folder and copy it to the desired location.
3. Type the following at the command line (items in Italics represent data that is specific to your product's uninstallation):
IDriver.exe /M{Your Product GUID} /s /f1"<FULLY qualified path>\YourResponseFile.iss"
Note: The /f1 parameter is necessary only if the Setup.iss file is located in a directory other than in the same location as Setup.exe.
Simple Uninstallation
If you do not want to follow the script logic and want to uninstall the product, you can use the following command line:
IDriver.exe /M{Your Product GUID} /uninst
The /uninst parameter causes a forced uninstallation without opening the script. It rolls back the system changes made during the installation, including those from the MSI package and any InstallShield scripting.
Note: For both of these uninstallation options, the /M argument is case sensitive.
Note: By default, the file "IDriver.exe" is located in the following path:
<ProgramFiles>\Common Files\InstallShield\Driver\<Version>\Intel 32.