adobe reader 9.3.1 msp active directory software installtion
Greetings,
The latest adobe reader 9.3.1 release is an patch msp file. Currently we have reader 9.3 installed via Active Directory Software installation. Has anyone upgraded if so what method did you use to distribute the new version in a GPO? Does anyone have a tried and true method to apply the msp / patch to the administrative / application installation point ? Any advise from AD GPO season Pro is greatly appreciated
thx
The latest adobe reader 9.3.1 release is an patch msp file. Currently we have reader 9.3 installed via Active Directory Software installation. Has anyone upgraded if so what method did you use to distribute the new version in a GPO? Does anyone have a tried and true method to apply the msp / patch to the administrative / application installation point ? Any advise from AD GPO season Pro is greatly appreciated
thx
0 Comments
[ + ] Show comments
Answers (10)
Please log in to answer
Posted by:
slay_u
14 years ago
Posted by:
skislowski
14 years ago
Posted by:
joedown
14 years ago
Posted by:
skislowski
14 years ago
Posted by:
anonymous_9363
14 years ago
Posted by:
squeakstar
14 years ago
i didn't know how to apply these updates at all tbh but i found a useful blog post on the subject
http://www.404techsupport.com/2010/02/17/gpo-deploying-adobe-reader-9-3-1/
http://www.404techsupport.com/2010/02/17/gpo-deploying-adobe-reader-9-3-1/
Posted by:
rasczak
14 years ago
Ok, I hope you all can help me understand this. If you Create an Admin install point, I understand that you patch the AIP.
If I understand what adobe is saying correctly, for each FULL install ie.9.0, 9.1, 9.2 and 9.3, you should create an AIP. then you deploy the latest via either GPO or SCCM. However, if you create an AIP for 9.3 for instance, does that AIP also contain all of the other patches for 9.0, 9.1 and 9.2? or am i incorrect in this assumption? and if I am incorrect, what is the proper way to patch them so that ALL relevant security patches are included in the latest AIP?
If I understand what adobe is saying correctly, for each FULL install ie.9.0, 9.1, 9.2 and 9.3, you should create an AIP. then you deploy the latest via either GPO or SCCM. However, if you create an AIP for 9.3 for instance, does that AIP also contain all of the other patches for 9.0, 9.1 and 9.2? or am i incorrect in this assumption? and if I am incorrect, what is the proper way to patch them so that ALL relevant security patches are included in the latest AIP?
Posted by:
anonymous_9363
14 years ago
Posted by:
rasczak
14 years ago
Posted by:
anonymous_9363
14 years ago
Here's a QAD script I had lying about
Option Explicit
Dim objInstaller
Dim colPatchList
Dim objPatch
Dim strList`
Const strProductCode = "{90110409-6000-11D3-8CFE-0150048383C9}"
Set objInstaller = CreateObject("WindowsInstaller.Installer")
Set colPatchList = objInstaller.Patches(strProductCode)
strList = ""
strList = strList & "Patches applied:" & vbCRLF
For Each objPatch In colPatchList
strList = strList & objInstaller.PatchInfo(objPatch, "PackageName") & vbCRLF
Next
WScript.Echo strList
If you want more information about the patches themselves, have a peek at the Patches stuff on MSDN.
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.