Advertisement
dwatkins

Example CCP deployment script

Apr 13th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. REM ------------------------------------------------------------------------------------------------
  2. REM Example Creative Cloud Packager deployment script
  3. REM Please note: change language and MSI and log filenames to match the package being used
  4. REM then save this file inside the package, alongside the .ccp file defining the package
  5. REM 2014 Adobe Systems Incorporated - for support please visit http://www.adobe.com/support/
  6. REM ------------------------------------------------------------------------------------------------
  7.  
  8. REM Ensure script is running in the directory from which is was executed
  9. @setlocal enableextensions
  10. @cd /d "%~dp0"
  11.  
  12. REM Example with French installLanguage option; replace fr_FR with de_DE, en_GB, en_US etc. as required
  13. cd Exceptions
  14.  exceptionDeployer.exe --workflow=install --mode=pre --installLanguage=fr_FR
  15.  
  16. REM Replace the name of the msi file "Adobe CC All.msi" with the name of your actual package installation file
  17. REM Rename your log file accordingly as well to reflect the name of your package
  18. cd ..\Build
  19.  start /wait msiexec /i "Adobe CC All.msi" /qn /lv* "%TEMP%\CC_all_msiexec.log"
  20.  
  21. cd ..\Exceptions
  22.  exceptionDeployer.exe --workflow=install --mode=post
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement