tbnas.blogg.se

Uninstall adobe creative cloud
Uninstall adobe creative cloud





uninstall adobe creative cloud
  1. #Uninstall adobe creative cloud install#
  2. #Uninstall adobe creative cloud code#
  3. #Uninstall adobe creative cloud mac#

This is frustrating, as this issue isn’t a problem with all Adobe CC apps - only a handful.Īfter asking about this in the #adobe channel in the Mac Admins Slack, it was determined that this wasn’t something that could reliably done with the information that the CCDA leaves on the device.

uninstall adobe creative cloud

In fact, these apps require you to use the base version listed on Adobe’s site, instead of the one that the app itself provides.Īs a result, for these apps we actually have no reliable way to remove them from the system without either hard-coding their base versions, or using an additional tool. The script above will give the resulting output:Īs it turns out, some Adobe CC apps don’t allow us to get their base version in this way (most notably Lightroom Classic, Lightroom CC, and Adobe XD). replace(ADOBE_UNINSTALL_DIR, '')Īpplication = application.

  • Removes each of these products, one by oneĪrmed with this knowledge, I wrote a little Python script that does the above (without removing the packages, yet).ĪDOBE_UNINSTALL_DIR = '/Library/Application Support/Adobe/Uninstall/'Īpplication = application.
  • Checks which of these products are CC apps (i.e.
  • And, with that information, we can kick off the uninstaller mentioned previously. This means that, for each CC app that the user has installed, we can get its SAP code, and its base version if we’re willing to parse that information. As an example, Photoshop version 22.1 uses an uninstaller file named PHSP_22_1.app.

    #Uninstall adobe creative cloud code#

    Remember that Uninstall directory I mentioned earlier? It turns out that all the items in there follow a naming convention, which is the applications SAP code along with its base version. They have an article detailing the SAP codes and current base versions for each product. You also can’t remove all versions at once, if the client has multiple versions installed.Īdobe helps us a little with both of these points.

  • You have to specify a base version, which means you also have to be able to determine the version.
  • You need to know what you’re removing, and its corresponding “SAP code”.
  • You can’t just remove any and all applications in one go (probably for the best, as that might remove CCDA too).
  • There are, however, two caveats to this approach: You need to run this command with superuser privileges for it to work properly (which Munki does anyways), but it does what it says on the tin: removes Photoshop (PHSP) version 21.0, without removing any user preferences. uninstall = 1 -sapCode =PHSP -baseVersion =21.0 -platform =osx10-64 \ Library/Application \ Support/Adobe/Adobe \ Desktop \ Common/HDBox/Setup \ As far as I can tell, the only requirement for this method to work is that the CCDA is installed, which is ideal for us, as we want to run it before removing the CCDA using the uninstaller. These uninstallers are actually symlinks that link into /Library/Application\ Support/Adobe/Uninstall/, which is a centralised location where uninstallers for all of the installed applications seem to be kept.Īdobe also provides for a second, more centralised option. for Photoshop 2021: /Applications/Adobe\ Photoshop\ 2021/Uninstall\ Adobe\ Photoshop\ 2021. The most visible one is actually to use the uninstaller that comes with each app, e.g.

    uninstall adobe creative cloud

    So then, we consider a second possibility - can we remove the installed Adobe CC apps before removing the CCDA?Īs it turns out, maybe! There are a couple of ways to uninstall applications once they’ve been installed. We plan on doing this, although Munki prompts are often ignored. Indeed, the results of attempting to do so are quite messy.Īn obvious solution is to then inform users that they should uninstall all of their CC apps before trying to remove the CCDA. The Creative Cloud desktop app can only be uninstalled if all Creative Cloud apps (such as Photoshop, Illustrator, and Premiere Pro) have already been uninstalled from the system. If they no longer need CCDA, they can just remove it through Munki as well.

    #Uninstall adobe creative cloud install#

    Because our users have varying needs, we provide them with just the CCDA through Munki, and allow them to install the software they want/need. We currently use Munki as our software distribution mechanism on macOS. In this way, we can assign application licenses on an as-needed basis, instead of purchasing complete Adobe Suite licenses for all of our users. In short, this means that users will install an Adobe CC Desktop Application (CCDA) that we provide, and log in with some Adobe credentials that we also provide (and manage). At work, we’re getting ready to roll out Adobe CC via Named User Licensing.







    Uninstall adobe creative cloud