Gentlemen like to know what the reader adobe uninstall command to the Software Distribution.
I’m uploading only the AdbeRdr11000
For example, I’m going through this command: msiexec.exe / qn / norestart / x {AC76BA86-7AD7-1046-7B44-AB0000000001}
@jmaple I personally don’t like using the GUID directly and prefer to use relevance substitution to find it. It is possible that the GUID could change over time, especially between major versions of a product.
The following should be good for all versions of adobe reader forever:
wait msiexec.exe /X {name of key whose (value "displayname" of it as string contains "Adobe Reader" of it and value "uninstallstring" of it as string as lowercase contains "msiexec") of key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" of registry} /qn
I have a requirement to remove Adobe acrobat reader DC from 2008R2 but no reg key in the location that you quote. Any idea where to aim at for this version of the reader?
Acrobat Reader DC appears to have a slight different displayname so a modification of @jgstew relevance is needed for DC.
wait msiexec.exe /X {name of key whose (value "displayname" of it as string contains "Acrobat Reader DC" of it and value "uninstallstring" of it as string as lowercase contains "msiexec") of keys "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" of registry} /qn