We are deploying CS6 Suites created with AAMEE.
Adobe has changed how to suppress the Acrobat installer with version 10.1.1 and later.
Please refer to this link for further detail:
http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/mac.html#disabling-updates
I created a package to run the "suppress acrobat updates" so I can include it in a self-service workflow.
The package is a payload free with a script to write the plist files.
The script is designed to suppress Acrobat Reader and Acrobat Pro version 10 and 11 in one go.
The script is:
#!/usr/bin/perl
## postflight
##
## Not supported for flat packages.
$pathToScript=$0;
$pathToPackage=$ARGV[0];
$targetLocation=$ARGV[1];
$targetVolume=$ARGV[2];
####################################################################################################
# (c) Mauricio Pellizzon 2012
# Adobe Acrobat Reader and Pro Suppress Updates
# version: 1.0
# date: 08/11/2012
####################################################################################################
#With version 10.1.1 and later, it is possible to disable and lock the Updater so that
# 1) updates won't happen and
# 2) users can't change the setting.
&asu;
####################################################################################################
sub asu {
`/usr/bin/defaults write /Library/Preferences/com.adobe.Acrobat.Pro 10 '<dict><key>FeatureLockdown</key><dict><key>bUpdater</key><false/></dict></dict>'`;
`/usr/bin/defaults write /Library/Preferences/com.adobe.Acrobat.Pro 11 '<dict><key>FeatureLockdown</key><dict><key>bUpdater</key><false/></dict></dict>'`;
`/usr/bin/defaults write /Library/Preferences/com.adobe.Reader 10 '<dict><key>FeatureLockdown</key><dict><key>bUpdater</key><false/></dict></dict>'`;
`/usr/bin/defaults write /Library/Preferences/com.adobe.Reader 11 '<dict><key>FeatureLockdown</key><dict><key>bUpdater</key><false/></dict></dict>'`;
}
exit 0;
Hope this helps.
Regards
Mauricio