2021.2

Table Of Contents
installation can be started and the exit code can be evaluated. See the sample batch file
below.
Exit codes
l 0 = Success
l 1 = General Error in preinstall (e.g. not supported settings for user.language /
user.country, for reason see preinstall_err.log)
l 2 = Unknown Error in preinstall
l 10 = General Error in Installer application (for reason see OL_Install_<timestamp>.log)
Sample batch file
@echo off
preinstall.exe
if errorlevel 10 goto err_installer
if errorlevel 2 goto err_unknown
if errorlevel 1 goto err_preinstall
echo Success
goto:eof
:err_installer
echo "Installer error - see OL_Install_<timestamp>.log"
goto:eof
:err_unknown
echo "Unknown preinstall error - see preinstall_err.log"
goto:eof
:err_preinstall
echo "Preinstall error - see preinstall_err.log"
goto:eof
Activating a License
PlanetPress Connect and PlanetPress Workflow both come with individual 30 day trial license
periods during which time it is not necessary to have a commercial license to run the
applications.
Page 55