Adobe Acrobat Reader DC For Mac



  1. Which Adobe Reader Is Best For Mac

Acrobat DC. It’s how the world gets work done.

Do one of the followings to reinstall your application: Reader: Go to the Adobe Reader Downloads page and click Install Now. Refer the article Install Adobe Acrobat Reader DC Mac OS for detailed instructions. To install older versions of Reader, refer: Install an older version of Adobe Reader on Mac OS. Acrobat: Download Acrobat from the Acrobat downloads page.

  1. If you're running Mac OS X 10.9 or later, install the latest version of Reader. For step-by-step instructions, see Install Adobe Acrobat Reader DC on Mac OS. Select your operating system, a language, and the version of Reader that you want to install.
  2. Download Adobe Reader DC for Mac now from Softonic: 100% safe and virus free. More than 10796 downloads this month. Download Adobe Reader DC latest ve.
  3. Adobe Acrobat Reader DC for Mac is the industry standard for viewing, printing, signing and commenting on PDF documents. It's the only PDF viewer available., which is able to open and interact with all types of PDF content, including forms and multimedia.

View, sign, comment on, and share PDFs for free.

JavaScript error encountered. Unable to install latest version of Adobe Acrobat Reader DC.
Click here for troubleshooting information.

Please select your operating system and language to download Acrobat Reader.

A version of Reader is not available for this configuration.

About:

Adobe Acrobat Reader DC software is the free global standard for reliably viewing, printing, and commenting on PDF documents.

And now, it's connected to the Adobe Document Cloud − making it easier than ever to work across computers and mobile devices.

It's the only PDF viewer that can open and interact with all types of PDF content, including forms and multimedia.

Optional offer:

GET MORE OUT OF ACROBAT:

The leading PDF viewer to print, sign, and annotate PDFs.

By clicking the “Download Acrobat Reader” button, you acknowledge that you have read and accepted all of the Terms and Conditions. Note: Your antivirus software must allow you to install software.

Do everything you can do in Acrobat Reader, plus create, protect, convert and edit your PDFs with a 7-day free trial. Continue viewing PDFs after trial ends.

By clicking the “Download Acrobat Pro Trial” button, you acknowledge that you have read and accepted all of the Terms and Conditions. Note: Your antivirus software must allow you to install software.

Administrators typically configure installers before deployment so that all users have identical settings. Many deployments simply involve using the Wizard and other basic configurations described in Pre-deployment configuration (Basic). More complex installations may require manually massaging plist files on a template machine.

Since manipulation of client settings through the user interface is not scalable, Adobe provides two key resources to help you configure Acrobat and Reader prior to deployment:

  • Customization Wizard: A free utility for configuring the installer prior to deployment.

  • Preference Reference: A dictionary of registry and plist preferences.

Preference fundamentals¶

Before continuing, you should know that:

  • DC product preferences are located under the track ID “DC” (for Continuous) or “2015|2017|2020” (for Classic).

  • The Continuous track uses versionless preferences. That is, over time new preferences will always reside under “DC” regardless of how many updates are applied.

  • Naming conventions and paths are relatively similar on Macintosh, Windows, Unix, and Linux systems.

  • The Preference Reference describes 500+ settings.

  • There are two types of settings which reside in different locations: a per-user setting and a global setting which require administrative privileges to change.

  • Feature lockdown is available on Macintosh beginning with 11.0. Lockable features are controlled via machine level settings so the end users can’t change them without administrator privileges.

  • Preference names are case sensitive.

  • Just because you don’t see the preference doesn’t mean it doesn’t exist:

    • Some preferences exist internally and are not visually apparent in the registry until after a feature is used. Subdirectories may also appear as the code is exercised.

    • Many features are not enabled by default and their related preferences must be manually created.

    • Many preferences cannot be set thought the UI and must be manually created.

    • The easiest way to configure the product is to exercise the UI and then manually massage the preferences which don’t have a corresponding UI.

Plist file details¶

It’s always good to remember the following:

Acrobat
  • Plist files are binary files. Different editors display plist contents in different ways such as XML, structured text, etc.

  • Different editors may handle preference values in odd ways. For example, the 3rd party Preference Setter application will set Integer0,BooleanFalse, but Number0,BooleanNo may not work. In XCode, the latter works fine.

  • Plist files are cached during the current session. If you find your recently set preferences are disappearing, note that Acrobat reads the cached copy rather than the edited files and that it then writes out the plist file on exit, thereby overwriting your edits. To sync the cached plist copy with the newly edited plist, type the following in your terminal:

User plist locations¶

Preferences may be configured per user or per machine (by an administrator). Manage preferences by modifying Users/<username>/Library/Preferences/com.adobe.<productname>.plist.

Plist syntax¶

Syntax varies by plist parser type. Your plist viewer may display an XML representation:

Or something like this:

::
Adobe Acrobat Reader DC For Mac

>> ] /Services [ /c << /EnableEchoSignDetection [ /b false] >> ] >>

When using this format, verify there are spaces between >> and ]. The ending should be `` ] >> ] >> ] >>`` not ]>>]>>]>>.

Windows vs. Mac¶

The structure, hierarchy, and naming conventions on Mac are similar to that used in the Windows registry. Thus, a Windows preference looks like:

On Mac, an XML representation looks like:

Data types¶

When adding new preferences the key name and data type must be correct. Every preference has a data type as indicated by the integer field under the key. These need to be added in the format that the application can recognize.

For example, to force a digest comparison with EnforceSecureChannel:

  1. Open ~root/com.adobe.(productname)_(productversion).plist.

  2. Navigate to [SecurityPubSec].

  3. Under PubSec, add a new key EnforceSecureChannel.

  4. Create an array element with an integer element specifying the data type and the boolean value.

Macintosh data types

Integer

Data Type

Description

0

boolean

true or false

1

int

An integer

2

atom

The string may be UTF-8 and can therefore include Unicode. The field typically contains text. For example, a value for Handlers:PrivKey could be Adobe.PPKLite.

3

number

Double

4

text

The string may be UTF-8 and can include Unicode. The Value Data field is entered as text. For example, a value for EDC:LastServerURL could be https://aps.serv.com:123.

5

string

ASCII only

6

data

A binary blob

7

Unused

8

dict

Containers that hold additional keys.

Controlling updates¶

Disabling updates¶

Disable and lock the Updater settings by setting bUpdater to false. Doing so overrides UpdateMode.

Disabling the Updater

Note the following:

  • DC Continuous track web and desktop updates are released in tandem to ensure cloud and desktop features remain synchronized and compatible. Failure to update desktop components while leaving services enabled may lead to an unsupported configuration.

  • Updater preferences in the UI support “Auto” and “Off” options. The Continuous track of Reader does not provide any UI options and the default is “Auto”.

Removing the Updater.acroplugin¶

To disable the application’s ability to update altogether, use a post install script to move, rename, or delete the Updater.acroplugin file from <root>/Contents/Built-in/Plug-ins/Updater.acroplugin.

Locking preferences¶

Lockable plist locations¶

Note

Do not modify the feature lockdown file that ships with the product at ShowPackageContents/content/MacOS/Preference/featurelockdown. The application merges the file Adobe provides with your file at runtime.

Locking support on Mac is identical to the support on Windows. Admin preferences can be set in <machineroot>/Library/Preferences/com.adobe.(Acrobat.Pro|Reader).plist. Within this file the path to a specific lockable preference is identical to Windows.

Many preferences may be locked so that end users cannot change them via the product’s user interface. Some preferences only reside in the lockdown location and do not have a counterpart in the user preference area. For details about specific preferences, refer to the Preference Reference.

To lock preferences:

  1. Go to <machineroot>/Library/Preferences

  2. Create a new plist file. Preferences for all versions are stored under a version hive. Thus, the <11> and any future hives reside in the same file. DC products preferences reside under the track name:

    • /Library/Preferences/com.adobe.Reader.plist(Insidehive'DC')

    • /Library/Preferences/com.adobe.Reader.plist(Insidehive'2015|2017|2020')

    • /Library/Preferences/com.adobe.Acrobat.Pro.plist(Insidehive'DC')

    • /Library/Preferences/com.adobe.Acrobat.Pro.plist(Insidehive'2015|2017|2020')

  3. The feature lockdown file is a system-level plist file in for a root account. The permissions of the plist file should be –755.

  4. Set the version value in the key. For DC, this is either DC for the Continuous track or 2015|2017|2020 for the Classic track.

  5. Add entries as shown in the examples. Note the following:

    • Always prepend the data type to the preference name (use the same name as on Windows).

    • Verify the path contains the correct product version.

  1. Save and close the plist.

Note

When using the Mac Wizard, keep in mind it creates an identical file in /Library/Preferences/. If a plist already exists on a client machine at that location, it is replaced at deployment time.

Future product updates won’t affect this file.

Locking attachment settings¶

Attachment settings are locked differently than other settings as follows:

  • Settings exist in a FeatureLockDown cabinet file by default. It is not a plist file.

  • The file is located at /Library/ApplicationSupport/Adobe/Acrobat/DC|2015|2017|2020/Preferences/.

  • This implementation originated with DC product versions.

  • Do not use Hungarian notation.

  • If you edit the file, future updates won’t overwrite your custom settings.

  • To modify the file, simply open and edit as needed.

Lockdown file syntax

Field

Description

<<

Begin XML element

>>

Close XML element

<< >>

Container of the element components

/

Entry name designator

[

Open bracket

]

Closed bracket

[]

Container for an entry name value

c

Mac data type

i

Mac data type

t

Mac data type

b

Mac data type

:

Separates value names from value integers

Delimits multiple value names in a list

(

Begins a list

)

Ends a list

( )

A list container

Example: Blacklisting JS API app.alert¶

The example below selectively blacklists the JavaScript API App.alert for all PDFs.

Which Adobe Reader Is Best For Mac

Example: Disabling startup messages¶