Advertisement
dwatkins

Example CCP deployment script

Mar 3rd, 2015
847
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 German installLanguage option; replace de_DE with fr_FR, en_GB, en_US etc. as required
  13. cd Exceptions
  14.  exceptionDeployer.exe --workflow=install --mode=pre --installLanguage=de_DE
  15. cd ..\Build
  16.  start /wait msiexec /i "Adobe CC All.msi" /qn /lv* "%TEMP%\CC_all_msiexec.log"
  17. cd ..\Exceptions
  18.  exceptionDeployer.exe --workflow=install --mode=post
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement