You can create batch and shell script files for simplifying the process of running the Exception Deployer during deployment.
In general, the deployment process is as follows:
PushD "%~dp0" Set installdir=%~dp0 @echo off Echo "Installing the Creative Cloud exceptions. Press any key to start the installation." PAUSE ExceptionDeployer --workflow=install --mode=pre --installLanguage=en_US Echo "Finished installing the Creative Cloud exceptions. Press any key to finish." PAUSE
PushD "%~dp0" Set installdir=%~dp0 @echo off Echo "Installing the Creative Cloud exceptions. Press any key to start the installation." PAUSE ExceptionDeployer --workflow=install --mode=post --installLanguage=en_US Echo "Finished installing the Creative Cloud exceptions. Press any key to finish." PAUSE
#!/bin/sh read -p "Press [Return] key to start the installation." sudo ./ExceptionDeployer.app --workflow=install --mode=post --installLanguage=en_US read -p "Press [Return] key to exit the installation."
Save the file. Make the script executable.
Sign in to your account