Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 490398290/76c49a34500f37d86955aa67211976d9 to your computer and use it in GitHub Desktop.
Save 490398290/76c49a34500f37d86955aa67211976d9 to your computer and use it in GitHub Desktop.
Acrobat Pro DC plist to disable updating, cloud services etc - more info on keys: http://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Macintosh/Workflows.html
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DC</key>
<dict>
<key>FeatureLockdown</key>
<dict>
<key>bUpdater</key>
<false/>
<key>cServices</key>
<dict>
<key>bToggleAdobeDocumentServices</key>
<true/>
<key>bToggleSendAndTrack</key>
<true/>
<key>bToggleWebConnectors</key>
<true/>
<key>bUpdater</key>
<false/>
</dict>
<key>cCloud</key>
<dict>
<key>bAdobeSendPluginToggle</key>
<true/>
</dict>
</dict>
</dict>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment