Copy link to clipboard
Copied
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. 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
...Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
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?
Copy link to clipboard
Copied
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
Find more inspiration, events, and resources on the new Adobe Community
Explore Now