Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

SCCM 2012 R2 and Adobe Create Cloud

New Here ,
May 02, 2016 May 02, 2016

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. 

1.8K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , May 17, 2016 May 17, 2016

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

...
Translate
Adobe Employee ,
May 03, 2016 May 03, 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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 13, 2016 May 13, 2016

newest problem, I am using SCCM 2012 R2 and adobe reader dc.  I am using package deployment in SCCM.  the install. file I am using in sccm is

@echo silent install Adobe Reader DC

msiexec /i "%~dp0%AcroRead.msi%" TRANSFORMS="AcroRead.mst" /update "%~dp0%AcroRdrDCUpd1501620039.msp%" /qn /norestart

I am testing from a machine this and the command runs, but doesn't install adobe.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 13, 2016 May 13, 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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
May 16, 2016 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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 16, 2016 May 16, 2016

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?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
May 17, 2016 May 17, 2016
LATEST

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines