-
-
Save krono/2f6b2ebcdd2a5d7c70b1cad26db09351 to your computer and use it in GitHub Desktop.
Force Kill/Terminate All Adobe-Related Process and Apps in MacOS
This file contains hidden or 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/sh | |
| adobeProcessList=( | |
| AdobeCRDaemon | |
| AdobeIPCBroker | |
| com.adobe.acc.installer.v2 | |
| CCXProcess | |
| CCLibrary | |
| 'Adobe CEF Helper' | |
| 'Core Sync' | |
| 'Creative Cloud Helper' | |
| 'Adobe Desktop Service' | |
| 'Creative Cloud' | |
| 'Adobe Crash Processor' | |
| CrashHelper | |
| ) | |
| for processName in "${adobeProcessList[@]}"; do | |
| pid=$(pgrep "$processName") | |
| if [ $? -ne 0 ]; then | |
| echo "process not running, skipping: $processName" | |
| continue | |
| else | |
| echo "killing pid(s) $pid of $processName" | |
| fi | |
| pkill -KILL -l "$processName" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment