I am trying to check for previous installation of SQL native Client 11, before installation and if found, it needs to be uninstalled. Executing UninstallString in Inno Setup
Things work fine, but I want the Uninstall to be performed unattended. I am getting options Modify,Repair,Remove
in the wizard. How can I select Remove
by default and proceed with uninstall silently?
Note: It uses MsiExec
and /U /SILENT
parameters in the Exec
function seems to just exit without any errors.
Thanks in advance.