Skip to main content
Participant
May 2, 2016
Answered

SCCM 2012 R2 and Adobe Create Cloud

  • May 2, 2016
  • 1 reply
  • 1881 views

i have built the package with the new adobe packager that said it puts acrobat and all in the build folder.  now I want to deploy the package with SCCM 2012 R2.  but was it the .bat file that I need to create to make that happen.  I want quiet unattendend install and not reboot for machines. 

    This topic has been closed for replies.
    Correct answer alisterblack

    i am trying to install two things here.  i am using sccm 2012 R2.  so i need the cmd file part for both of these.

    1.  Adobe Reader DC. i have ran the adobe customization tool and have a mst file.  so what is my command for that? i also want the command to remove the older version of adobe reader that's installed.

    2.  Adobe Create cloud that i used the adobe packager to build.  i want to be sure and install everything i picked i the package including acrobat.  what is the command for this?


    1.  Adobe Reader DC. i have ran the adobe customization tool and have a mst file.  so what is my command for that? i also want the command to remove the older version of adobe reader that's installed.

    Install Reader with an MST

    msiexec /i <path\filename.msi> TRANSFORMS="filename.mst"

    To uninstall

    msiexec /x "c:\filename.msi" /q

    http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/cmdline.html#silent-uninstalls

    Obviously change 'filename' for the actual name of your MSI and MST file.

    2.  Adobe Create cloud that i used the adobe packager to build.  i want to be sure and install everything i picked i the package including acrobat.  what is the command for this?

    Syntax

    setup [--silent] [--ADOBEINSTALLDIR=] [--INSTALLLANGUAGE=]

    Syntax example:

    setup.exe --silent --ADOBEINSTALLDIR="C:\InstallDir" --INSTALLLANGUAGE=fr_CA

    Location of setup.exe:

    [Package]\Build

    See also https://helpx.adobe.com/creative-cloud/packager/deploying-packages.html

    https://helpx.adobe.com/creative-cloud/packager/deploying-packages-sccm.html

    1 reply

    alisterblack
    Inspiring
    May 3, 2016

    To install Acrobat DC along with the other applications use setup.exe from the Build folder (rather than the msi).

    Full details including syntax for silent deployment can be found here.

    Deploy Adobe Acrobat XI or DC

    Participant
    May 14, 2016

    also this you sent me didn't help to deploy adobe creative cloud thru sccm.  I ended up having to manuallyrun the installer on the machines.  SCCM if setup correctly will deploy the packages  I am asking for the script  to put in sccm to deploy create cloud with acrobat reader...

    as well as the script to deploy adobe DC with the transform file created from the customization file.

    Participant
    May 16, 2016

    To install Acrobat DC from the build folder

    start /wait msiexec /i "namegoeshere.msi" /qn

    The mst should be picked up as it is written into the setup.ini

    Adobe Reader is not a Creative Cloud application and you cannot build a package for it using the Creative Cloud Packager.

    msiexec /i <path\AcroRead.msi> TRANSFORMS="AcroRead.mst" /qb


    i am trying to install two things here.  i am using sccm 2012 R2.  so i need the cmd file part for both of these.

    1.  Adobe Reader DC. i have ran the adobe customization tool and have a mst file.  so what is my command for that? i also want the command to remove the older version of adobe reader that's installed.

    2.  Adobe Create cloud that i used the adobe packager to build.  i want to be sure and install everything i picked i the package including acrobat.  what is the command for this?