@ECHO OFF

REM ################################################################
REM Installs: ClearQuest
REM Download link:
REM Contact information:
REM Documentation
REM Created:
REM Modifyed:
REM Info:
REM Program reboots during install: No
REM Windows needs to be rebooted by SCCM after install: No
REM User interaction at install: No
REM Application dependencies: No
REM Firewall needs to open: No
REM ################################################################

SETLOCAL

REM Skapar katalog
md %PROGRAMDATA%\Logs

REM Kontrollerar befintlig installation av Installation Manager
if not exist "C:\IBM\InstallationManager\eclipse\IBMIM.exe" goto IIMINSTALL

goto CQINSTALL

:IIMINSTALL

REM Kör setup för Installation Manager
%~dp0installc.exe --launcher.ini %~dp0IM_silent-install.ini -log %PROGRAMDATA%\Logs\install_installation_manager.log

:CQINSTALL

REM Install ClearQuest
"C:\IBM\InstallationManager\eclipse\IBMIM.exe" --launcher.ini %~dp0NyA_silent-install.ini -log %PROGRAMDATA%\Logs\install_clearQuest.log

Endlocal

REM Return exit code to SCCM
exit /B %EXIT_CODE%

  • No labels