I am trying to create a deployment that will uninstall Acrobat Pro CC XI.
The package creator creates 2 MSIs that needs to be installed to install the program one of which being the MSI in the exception folder which gets installed via the ExceptionDeployer. This is fine. The program installs (Although it creates 2 items in Add\Remove Programs) and works as expected.
I want to know how to completely remove Acrobat Pro CC XI. Though. I am currently trying to use the below commands however this doesn't appear to work.
start /wait msiexec.exe /uninstall "Build\Acrobat Pro XI x64.msi" /quiet
msiexec.exe /uninstall "Exceptions\AcrobatProfessional11.0-mul\AcroPro.msi" /quiet
It does remove both items that appear in Add\Remove Programs except it still shows up when listing installed programs via script as well as still showing up in the Registry.(HKLM\SOFTWARE\Microsoft\Windows\CurrentVerison\Uninstall\{5A974FBE-3480-42BA-A2 E8-6A887FC7B6F0}. I have tried to pass the uninstall command "MsiExec.exe /X{5A974FBE-3480-42BA-A2E8-6A887FC7B6F0}". It starts to do something and then appears to reverse the progress bar and end without errors.