

- Creative cloud app cleaner mac install#
- Creative cloud app cleaner mac Patch#
- Creative cloud app cleaner mac pro#
I once created a script to remove everything from Adobe to solve several kind of issues. Library/PrivilegedHelperTools/com.adobe.Įcho "No Additional Adobe Files or Folders Found in $i." This will NOT delete any user specific locations for Adobe files. This section locates all of the Adobe items located in various /Library folders and deletes them. This section locates all of the Adobe items located in the /Applications/Utilities folder and deletes them. ProcList="Adobe" procName="" Check to see if either of those processes are runningįor proc in axc | grep -i "$proc" | awk '" procName=$"$procName $proc"ĭone This section locates all of the Adobe items located in the /Applications folder and deletes them. This script will not touch the user folders on a computer, only the shared library folders located across the system. Please save all work prior to running this. Hello here is my script to remove Adobe as an uninstall script: !/bin/sh This script will brute force remove all Adobe related files from the local hardware. Not bad since this only has to happen once a year
Creative cloud app cleaner mac install#
Then package the uninstall script as a automated removal policy for compliancy purposes afterwards.įor major version upgrades we use the old jamf nation trick of composing the full unpackedvinstallers in /var/tmp with a post install script to fall that installer. Use composer to bundle the script as a pkg and we just roll this pkg in the definitions throughout the year.
Creative cloud app cleaner mac Patch#
We take the above and create custom versions for each individual adobe app in patch management. If you want to run it as a preinstall, then you'd have to add rm lines for /library/application Support/Adobe sub-directories as wellįor incremental updates throught the year, we user variations of: !/bin/bash Rm -r "/Applications/Adobe Muse CC 2019" Current User Path Template CurrentUser=$(logname) Current user home folder CurrentUserHome=(/Users/"$CurrentUser") rm -rf $CurrentUserHome/Library/Application Support/ rm -r "$CurrentUserHome/" Rm -r "/Applications/Adobe Prelude CC 2019" Rm -r "/Applications/Adobe Animate CC 2019" Rm -r "/Applications/Adobe Soundbooth CC 2019" Rm -r "/Applications/Adobe Photoshop CC 2019"
Creative cloud app cleaner mac pro#
Rm -r "/Applications/Adobe Premiere Pro CC 2019" Rm -r "/Applications/Adobe OnLocation CC 2019" Rm -r "/Applications/Adobe Media Encoder CC 2019" Rm -r "/Applications/Adobe Flash Catalyst CC 2019" Rm -r "/Applications/Adobe Fireworks CC 2019" Rm -r "/Applications/Adobe Extension Manager CC 2019" Rm -r "/Applications/Adobe Encore CC 2019" Rm -r "/Applications/Adobe Dreamweaver CC 2019" Rm -r "/Applications/Adobe Device Central CC 2019" Rm -r "/Applications/Adobe Contribute CC 2019"

Rm -r "/Applications/Adobe After Effects CC 2019" Rm -r "/Applications/Adobe Bridge CC 2019" Rm -r "/Applications/Adobe InCopy CC 2019" Rm -r "/Applications/Adobe InDesign CC 2019" Rm -r "/Applications/Adobe Illustrator CC 2019" Rm -r "/Applications/Adobe Flash CC 2019" Rm -r "/Applications/Adobe Audition CC 2019" We run variations (changing the year) of this as a post install, after the yearly major version upgrades.
