DepotSoftware - addInstallShieldPackageToDepotByGroupName
DepotSoftware - addInstallShieldPackageToDepotByGroupName
Description :
This command adds an InstallShield installer and the associated response files to the Depot. The groupName argument is the depot group to which the software will be added. The softwareLocation argument identifies the InstallShield installer. The supportFileLocationList argument is a comma delimited list specifying the silent install response file and the silent uninstall response file (in that order).
Return type : DBKey
Command Input :
Variable Name | Variable Type | Description |
|---|---|---|
groupName | String | Full path to the depot group containing the installer. |
softwareLocation | String | Fully qualified NSH path to the installer. |
name | String | Display name of the installer. |
supportFileLocationList | com.bladelogic.om.infra.cli.helper.StringList | Comma-separated list of paths to the install and uninstall response files (in that order). |
Example
The following example shows how to add an InstallShield package and its response (.iss) files to the Depot. Note that the location can only be a fully qualified NSH path to the InstallShield package (for example, //host/path/to/package/installer.exe).
Script
DEPOT_GROUP=/installshield
IS_LOC=//filestore1/installshield/custom-db-1.1.0.exe
IS_INST_LOC=//filestore1/installshield/custom-db-intstall.iss
IS_UNINST_LOC=//filestore1/installshield/custom-db-uninstall.iss
IS_SUPP_FILES=$IS_INST_LOC,$IS_UNINST_LOC
IS_NAME="Install Custom db"
`blcli DepotSoftware addInstallshieldPackageToDepotByGroupName $DEPOT_GROUP $IS_LOC $IS_NAME $IS_SUPP_FILES`