Skip to content

Instantly share code, notes, and snippets.

@amandaw33
Last active February 10, 2022 17:37
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save amandaw33/0449071f4dc087e9c0c1a391e2443de3 to your computer and use it in GitHub Desktop.
Save amandaw33/0449071f4dc087e9c0c1a391e2443de3 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>
@svan71
Copy link

svan71 commented Dec 24, 2021

When internet connection is disabled, you don't see the annoying message when loading photoshop. I tried using firewall but that does not work. Is there a way to trick it to think there is no internet connection?

Screen Shot 2021-12-23 at 10 26 01 PM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment