SCCM Installation TSM Client for 6 different sites

felymich

ADSM.ORG Member
Joined
Mar 7, 2012
Messages
23
Reaction score
0
Points
0
Hello,

I would like some directions how to deploy with SCCM the TSM Client with six different sites:
---------------------------------------------------------------------------------------------------------------------------------------
REM Please use this dsm.opt file when configuring TSM. Also, just a reminder of the following TSM servers to use:

REM Irvine:
REM AIPTSMXBS21e – Site1
REM AIPTSMXBS22e – Site2
REM AIPTSMXBS23e – Site3

REM SDSC:
REM AIPTSMXBS13e – Site4
REM AIPTSMXBS14e – Site5
REM AIPTSMXBS16e – Site6

REM TCPSERVERADDRESS ASPTSMXBS13e * Site4
REM TCPSERVERADDRESS ASPTSMXBS14e * Site5
REM TCPSERVERADDRESS ASPTSMXBS16e * Site6
REM TCPSERVERADDRESS AIPTSMXBS21e * Site1
TCPSERVERADDRESS AIPTSMXBS22e * Site2
REM TCPSERVERADDRESS AIPTSMXBS23e * Site3

:selection
::ECHO.
::ECHO 1. Site4
::ECHO 2. Site5
::ECHO 3. Site6
::ECHO 4. Site1
ECHO 5. Site2
::ECHO 6. OHIA TSM Backup Irvine
::set choice=
::set /p choice=Type the number to print text.
set choice=5
::if not '%choice%'=='' set choice=%choice:~0,1%
::if '%choice%'=='1' goto SDSC-CC
::if '%choice%'=='2' goto SDSC-ENT
::if '%choice%'=='3' goto SDSC-OHIA
::if '%choice%'=='4' goto SDC-CC
if '%choice%'=='5' goto SDC-ENT
::if '%choice%'=='6' goto SDC-OHIA
::ECHO "%choice%" is not valid, try again
::ECHO.

:SDC-CC
COPY "dsm - CareConnect TSM Backup Irvine.opt" "dsm.opt"
Goto Start

:SDSC-CC
COPY "dsm - CareConnect TSM Backup SDSC.opt" "dsm.opt"
Goto Start

:SDC-ENT
COPY "dsm - Enterprise TSM Backup Irvine.opt" "dsm.opt"
Goto Start

:SDSC-ENT
COPY "dsm - EnterPrise TSM Backup SDSC.opt" "dsm.opt"
Goto Start

:SDC-OHIA
COPY "dsm - OHIA TSM Backup Irvine.opt" "dsm.opt"
Goto Start

:SDSC-OHIA
COPY "dsm - OHIA TSM Backup SDSC.opt" "dsm.opt"
Goto Start

Goto Selection

:Start

REM To install a predefined (custom) dsm.opt file, use the following instructions before you begin the silent installation.

REM Place the customized copy of the dsm.opt file in the ...\CONFIG directory located within the install image, for example:
REM tsm_images\TSM_BA_Client\baclient\Program Files\Tivoli\TSM\config
REM The file must be named "dsm.opt".

REM Also be aware that some Windows client may need a reboot if C++ Redistributable needs to be installed:
REM http://www-01.ibm.com/support/knowl...m.itsm.client.doc/c_inst_winclientreboot.html
REM To perform a silent installation of the C++ redistributables or the backup-archive client, you must turn off User Account REM Control (UAC).
REM The C++ redistributables require elevated privileges to install them
REM Silently installing C++ redistributables for the 64-bit client
vcredist_x86.exe /q /c:"msiexec /i vcredist.msi /qn /l*v
%temp%\vcredist_x86.log"
vcredist_x64.exe /q /c:"msiexec /i vcredist.msi /qn /l*v
%temp%\vcredist_x64.log"

REM Silent client installation on Windows 64 bit systems
REM It names the 64 bit API feature on the ADDLOCAL= parameter.
REM When you place a customized version of the msiexec command (which invokes the Microsoft Software Installer) in a script or REM batch
REM file, you can perform installations on multiple Windows systems. The following is a sample command to install the backup-REM Archive
REM command-line client, client GUI, web client, API, and Administrative command-line client.

REM You might need to customize this
REM example to run correctly on your system.
REM While the command is physically spread across multiple lines on this page, enter it on a single command line.
REM
REM Old Version
REM msiexec /i
REM "Z:\tsm_images\TSM_BA_Client\IBM Tivoli Storage Manager Client.msi"
REM RebootYesNo="No" REBOOT="Suppress" ALLUSERS=1
REM INSTALLDIR="c:\program files\tivoli\tsm"
REM ADDLOCAL="BackupArchiveGUI,BackupArchiveWeb,Api64Runtime,
REM AdministrativeCmd"
REM TRANSFORMS=1033.mst /qn /l*v "c:\log.txt"

:Install
REM New version
REM "Z:\tsm_images\TSMClient\IBM Spectrum Protect Client.msi"
"\\VRPSCCMPR01\Source\Application\TSM\8.1.6.1-TIV-TSMBAC-WinX64\IBM Spectrum Protect Client.msi" RebootYesNo="No" REBOOT="Suppress" ALLUSERS=1 INSTALLDIR="C:\Program Files\Tivoli\TSM" ADDLOCAL="BackupArchiveGUI,BackupArchiveWeb,Api64Runtime" /qn /l*v "C:\log.txt"

:End


Also if you have an option for a msi /replace to upgrade the version?

Thanks,
Dominique
 
Back
Top