Forked from mhucka/gist:59e785a315d813d14cd0258b89a2fcac
Created
June 9, 2022 15:07
-
-
Save jamesdh/6315d675bd71a03479a9d7909dc1188b to your computer and use it in GitHub Desktop.
Stop the Adobe Creative Cloud app from auto-launching on login on macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ============================================================================= | |
# @file GitHub gist | |
# @brief stop Adobe Creative Cloud app from auto-launching on login on macOS | |
# @author Michael Hucka <mhucka@caltech.edu> | |
# @created 2021-08-12 | |
# @website https://gist.github.com/mhucka/59e785a315d813d14cd0258b89a2fcac | |
# | |
# I find Adobe Creative Cloud absolutely infuriating. It installs auto | |
# launchers that are not in the user's login app list, and the services are | |
# hard to find and hard to stop. This is a script to try to unload and kill | |
# off the services on a macOS system. Tested on Mojave (10.14). | |
# | |
# USE AT YOUR OWN RISK. I'm not responsible for anthing that may happen if | |
# you use this. | |
# ============================================================================= | |
# From https://apple.stackexchange.com/a/356217/6489 | |
launchctl unload -w {,~}/Library/LaunchAgents/com.adobe.*.plist > /dev/null 2>&1 | |
sudo launchctl unload -w /Library/LaunchDaemons/com.adobe.*.plist > /dev/null 2>&1 | |
# From https://apple.stackexchange.com/a/366252/6489 | |
sudo launchctl disable system/com.adobe.acc.installer.v2 > /dev/null 2>&1 | |
sudo launchctl disable system/com.adobe.acc.installer > /dev/null 2>&1 | |
sudo launchctl disable system/Adobe_Genuine_Software_Integrity_Service > /dev/null 2>&1 | |
sudo launchctl disable system/com.adobe.AdobeCreativeCloud > /dev/null 2>&1 | |
sudo launchctl disable system/com.adobe.agsservice > /dev/null 2>&1 | |
launchctl disable gui/$(id -u)/com.adobe.acc.AdobeCreativeCloud.2416 > /dev/null 2>&1 | |
launchctl disable gui/$(id -u)/com.adobe.accmac.2256 > /dev/null 2>&1 | |
launchctl disable gui/$(id -u)/com.adobe.CCXProcess.2252 > /dev/null 2>&1 | |
launchctl disable gui/$(id -u)/com.adobe.CreativeCloud > /dev/null 2>&1 | |
launchctl disable gui/$(id -u)/com.adobe.CCLibrary.4032 > /dev/null 2>&1 | |
launchctl disable gui/$(id -u)/com.adobe.AdobeCreativeCloud > /dev/null 2>&1 | |
# Additional things found necessary on my 10.14 system: | |
killall Adobe\ Desktop\ Service > /dev/null 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment