Skip to content

Instantly share code, notes, and snippets.

@buraksahin59
Last active July 23, 2020 07:47
Show Gist options
  • Save buraksahin59/4306c4c0cd57e153c587af2648fe762b to your computer and use it in GitHub Desktop.
Save buraksahin59/4306c4c0cd57e153c587af2648fe762b to your computer and use it in GitHub Desktop.
disable creative cloud startup on mac

It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.

Step 1

Run to edit plist file: code /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist

Change to false given below;

--onOSstartup=false

<key>RunAtLoad</key><false/>

Step 2

Run to edit plist file: code /Library/LaunchAgents/com.adobe.GC.Invoker-1.0.plist

Change to false given below;

<key>RunAtLoad</key><false/>

<key>LaunchOnlyOnce</key><false/>

Step 3

Run to edit plist file: code /Library/LaunchAgents/com.adobe.GC.AGM.plist

Change to false given below;

<key>RunAtLoad</key><false/>

<key>LaunchOnlyOnce</key><false/>

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