Skip to content

Instantly share code, notes, and snippets.

@joncrain
Last active October 19, 2018 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joncrain/5eeb2c4e144d674cae5526e68fab5d51 to your computer and use it in GitHub Desktop.
Save joncrain/5eeb2c4e144d674cae5526e68fab5d51 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Application SAP Codes and versions found here: https://helpx.adobe.com/enterprise/package/help/apps-deployed-without-their-base-versions.html
# check if root
if [[ $EUID != 0 ]] ; then
echo "Remote Update Manager: Please run this as root, or via sudo."
exit -1
fi
# ProductVersions
aftereffects=AEFT#16.0
animate=FLPR#19.0
audition=AUDT#12.0.0
bridge=KBRG#9.0
characteranimator=CHAR#2.0
dimension=ESHR#2.0
dreamweaver=DRWV#19.0
illustrator=ILST#23.0.0
incopy=AICY#14.0
indesign=IDSN#14.0
lightroom=LTRM#2.0
mediaencoder=AME#13.0.0
photoshop=PHSP#20.0
prelude=PRLD#8.0.0
premierepro=PPRO#13.0.0
xd=SPRK#13.0
RUM="/usr/local/bin/RemoteUpdateManager --action=install --productVersions=$aftereffects,$animate,$audition,$bridge,$characteranimator,$dimension,$dreamweaver,$illustrator,$incopy,$indesign,$lightroom,$mediaencoder,$photoshop,$prelude,$premierepro,$xd"
$RUM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment