@echo off rem This script needs to be executed after restoring access rem to volumes. set IMAN_KEEP_SYSTEM_LOG=TRUE set IMAN_TMP_DIR=C:\ugs\Tce913\install\INSTAL~1\upgrade_logs set IMAN_ROOT=C:\ugs\Tce913 set IMAN_DATA=e:\ugsshare\PLM0data set IMAN_BYPASS_CANNED_METHODS=ALL call e:\ugsshare\PLM0data\iman_profilevars rem NOTE: Set password here or conceal it by using an rem environment variable. if not defined IMAN_USER_PASSWD set IMAN_USER_PASSWD=your password here rem Verify password was set. if not "%IMAN_USER_PASSWD%"=="your password here" goto start echo You must first edit this script to insert the echo password or set IMAN_USER_PASSWD. echo (eg set IMAN_USER_PASSWD=password) goto :eof rem Stop if there is an error. :error @echo Utility failed to execute properly. @goto :eof rem Start running the upgrade commands. :start echo on %IMAN_ROOT%\bin\upgrade_workflow_objects -u=infodba -p=%IMAN_USER_PASSWD% -g=dba -proc_def_file_name=%IMAN_DATA%\tcm_process_templates_base.dat @if errorlevel 1 goto error %IMAN_ROOT%\bin\install_default_report_designs -u=infodba -p=%IMAN_USER_PASSWD% -g=dba -file=%IMAN_DATA%\report_writer\default_report_designs.xml @if errorlevel 1 goto error %IMAN_ROOT%\bin\ugmgr_add_note_types -u=infodba -p=%IMAN_USER_PASSWD% -g=dba @if errorlevel 1 goto error %IMAN_ROOT%\bin\add_mso_templates -u=infodba -p=%IMAN_USER_PASSWD% -g=dba @if errorlevel 1 goto error %IMAN_ROOT%\bin\upgrade_workflow_objects -u=infodba -p=%IMAN_USER_PASSWD% -g=dba @if errorlevel 1 goto error