Unistall all version of acroba
Ciao,
I want to uninstall all versions of Acrobat.
How can I do?
Thanks
I want to uninstall all versions of Acrobat.
How can I do?
Thanks
0 Comments
[ + ] Show comments
Answers (13)
Please log in to answer
Posted by:
anonymous_9363
14 years ago
You'll need to find the Product Code for each product and then run a sequence of calls to MSIExec.EXE, adding the uninstall switch and other such switches as you need. For example, I *always* specify a verbose log, for installs AND uninstalls.
For example, I have Acrobat Reader 9.3.2 on the machine I'm using at the moment. Its Product Code is {AC76BA86-7AD7-1033-7B44-A93000000001}. To uninstall, I would use this command line:
For example, I have Acrobat Reader 9.3.2 on the machine I'm using at the moment. Its Product Code is {AC76BA86-7AD7-1033-7B44-A93000000001}. To uninstall, I would use this command line:
msiexec /x {AC76BA86-7AD7-1033-7B44-A93000000001}/qb /l*v %temp%\AcrobatReader090302.log
Posted by:
nheim
14 years ago
Posted by:
informaticobs
14 years ago
Hello,
I manage a network of about 2,000 computers and each has a different version of Acrobat Reader.
I wanted to standardize the computer with a version of Acrobat same for everyone.
Using Landesk I wanted to create a script that I uninstall all versions of Acrobat and install Acrobat Reader version 9.3.
Thanks
I manage a network of about 2,000 computers and each has a different version of Acrobat Reader.
I wanted to standardize the computer with a version of Acrobat same for everyone.
Using Landesk I wanted to create a script that I uninstall all versions of Acrobat and install Acrobat Reader version 9.3.
Thanks
Posted by:
Jsaylor
14 years ago
Posted by:
informaticobs
14 years ago
Posted by:
anonymous_9363
14 years ago
using the win32_product class in WMIThing is, Joe, do all the products use the same format for, say, the Name or Caption? I'm willing to bet that some are named as 'Adobe Acrobat Reader', others as 'Adobe Reader'. Creating code to correctly parse those is probably just as much work as finding the Product Codes. I'd wager LANDesk could produce a report which lists them, wouldn't you think?
Posted by:
brogers
14 years ago
The right way to identify products is via the GUID and VersionMin/Max as described in the admin guide. Here's my canned response to many questions which will point you there.
Hi folks,
Adobe recognizes a clear need to provide admins with more and better documentation and resources. To this end, resources are being updated and corralled in an enterprise portal here: http://kb2.adobe.com/cps/837/cpsid_83709.html. Note that one resource is an AIR application which contains much of the documentation and an ever growing Preference Reference documenting over 300 keys. Expect several hundred more pages of new and updated doc in the coming months.
thanks,
Ben
Hi folks,
Adobe recognizes a clear need to provide admins with more and better documentation and resources. To this end, resources are being updated and corralled in an enterprise portal here: http://kb2.adobe.com/cps/837/cpsid_83709.html. Note that one resource is an AIR application which contains much of the documentation and an ever growing Preference Reference documenting over 300 keys. Expect several hundred more pages of new and updated doc in the coming months.
thanks,
Ben
Posted by:
dunnpy
14 years ago
Posted by:
dsharples
14 years ago
Posted by:
dunnpy
14 years ago
Posted by:
Jsaylor
14 years ago
ORIGINAL: VBScab
using the win32_product class in WMIThing is, Joe, do all the products use the same format for, say, the Name or Caption? I'm willing to bet that some are named as 'Adobe Acrobat Reader', others as 'Adobe Reader'. Creating code to correctly parse those is probably just as much work as finding the Product Codes. I'd wager LANDesk could produce a report which lists them, wouldn't you think?
It definitely isn't the same syntax every time, but some WQL-fu like so: name like '%adobe%' AND name like '%reader%' . Has worked marvelously for me so far.
Posted by:
brogers
14 years ago
Posted by:
anonymous_9363
14 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.