Operating Systems: AIX, HP-UX, Linux, Solaris, Windows
Centralized installation manager administrative tasks
You can use the Jacl or Jython scripting languages to use the various features of the centralized installation manager with the wsadmin tool. Use the commands and parameters to install, uninstall, and manage various software packages and maintenance files. The administrative tasks for the centralized installation manager include the following commands:
- installWASExtension
- installSoftware
- installMaintenance
- listPackagesForInstall
- listFeaturesForInstall
- showPackageInfo
- showLicenseAgreement
- getManagedNodesOnHostByInstallLoc
- listManagedNodesOnHost
- testConnectionToHost
- testConnectionToHostUsingSSHKey
- installSSHPublicKeyOnHost
- listKeyInstallationRecords
- updateKeyInstallationRecords
- listPendingRequests
- listInProgressRequests
- listRequestsForTarget
- showLatestInstallStatus
- uninstallSoftware
- uninstallMaintenance
installWASExtension
The installWASExtension command installs the specified WebSphere® Application Server extension package on a specified host that contains one or more WebSphere Application Server Network Deployment nodes. The nodes must be defined and part of the WebSphere Application Server Network Deployment cell.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
- -hostName
- Name of the remote host. (String, required)
- -augment
- Specifies a list of nodes to augment. Valid nodes are those defined on the host under the same installation location for WebSphere Application Server. Specify ALL_NODES to augment all of the nodes defined for the same installation location. (String, required)
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
- -acceptLicense
- Specifies if the license agreement is accepted. Specify true to indicate that you reviewed and agreed to the terms of the IBM® International Program License Agreement accompanying this program. Otherwise, you cannot proceed with the installation of the program or component. (String, required)
Optional parameters
- -installLocation
- Specifies the path of the installation directory on the remote host. Specify this parameter only if there are multiple installation locations that exist within the current cell on the same host. (String, optional)
- -featureList
- Specifies a list of features to install on the remote target. (String, optional)
- -adminPassword
- Specifies the administrative password for the remote host. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -privateKeyStore
- Specifies the path to the private key file, which is located on the deployment manager. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -keyStorePassword
- Specifies an optional password, which is also known as the pass phrase, that is used to protect the private key file. (String. Required if a non-blank password is used to protect the key file.)
- -specialParms
- Specifies optional name-value pairs for other parameters that might be required. Obtain information about any name-value pairs from the provider of the software package. You can also use the showPackageInfo command to gather this information. (String, optional)
- -tempDir
- Specifies the location of the temporary directory on the target host. If this parameter is omitted, the centralized installation manager uses the default temporary directory of the target host. (String, optional)
Batch mode example usage
- Use Jacl:
$AdminTask installWASExtension {-packageName XDOps -hostName river.com -augment ALL_NODES -adminName admin1 -adminPassword passw0rd1 -acceptLicense true}- Use Jython string:
AdminTask.installWASExtension ('[-packageName XDOps -hostName river.com -augment ALL_NODES -adminName admin1 -adminPassword passw0rd1 -acceptLicense true]')Interactive mode example usage
- Use Jacl:
$AdminTask installWASExtension {-interactive}- Use Jython string:
AdminTask.installWASExtension ('[-interactive]')
installSoftware
The installSoftware command installs the specified software package on the target host.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
- -hostName
- Name of the remote host. (String, required)
- -platformType
- Specifies the operating system of the remote workstation. The valid types are: Windows®, AIX®, HP-UX, Linux®, UNIX®, or Solaris. This parameter is not case-sensitive. (String, required)
- -installLocation
- Specifies the path to the installation directory on the remote host. Specify this parameter only if there are multiple installation locations that exist within the current cell on the same host. (String, required)
- -featureList
- Specifies features of WebSphere Application Server Community Edition Version 2.0 to install on the remote target. (String, required)
Specify -ServerAndSDK to install WebSphere Application Server Community Edition and the IBM SDK together. Specify -ServerOnly to install WebSphere Application Server Community Edition without installing the IBM SDK. Optional: You can specify the directory that contains a supported Java™ software development kit (SDK) by issuing -JAVA_INSTALL_DIR with the -specialParms parameter. If you do not specify -JAVA_INSTALL_DIR, an attempt is made to locate an IBM SDK on the workstation by default. The request to install WebSphere Application Server Community Edition fails if the centralized installation manager cannot locate a SDK.
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
- -acceptLicense
- Specifies if the license agreement is accepted. Specify true to indicate that you reviewed and agreed to the terms of the IBM International Program License Agreement accompanying this program. Otherwise, you cannot proceed with the installation of the program or component. (String, required)
Optional parameters
- -featureList
- Specifies a list of features to install on the remote target. (String, optional)
- -adminPassword
- Specifies the administrative password for the remote host. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -privateKeyStore
- Specifies the path to the private key file, which is located on the deployment manager. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -keyStorePassword
- Specifies an optional password, which is also known as the pass phrase, that is used to protect the private key file. (String. Required if a non-blank password is used to protect the key file.)
- -specialParms
- Specifies optional name-value pairs for other parameters that might be required. Obtain information about any name-value pairs from the provider of the software package. You can also use the showPackageInfo command to gather this information. (String, optional)
- -tempDir
- Specifies the location of the temporary directory on the target host. If this parameter is omitted, the centralized installation manager uses the default temporary directory of the target host. (String, optional)
Batch mode example usage
- Use Jacl:
$AdminTask installSoftware {-packageName XDAgent -hostName abc.com -platformType windows -installLocation C:/WXD61/Agent -adminName admin1 -adminPassword passw0rd1 -specialParms "{DMGR_ADMIN_ID admin2}{DMGR_ADMIN_PWD passw0rd2}" -acceptLicense true}$AdminTask installSoftware {-packageName WASCE20 -featureList ServerAndSDK -hostName abc.com -platformType windows -installLocation "D:/WASCE20/CE_22409" -adminName admin1 -adminPassword passw0rd1 -acceptLicense true -specialParms "{NODE_TO_MANAGE_WASCE abcNode01}{DISABLE_OS_PREREQ_CHECKING true}"}$AdminTask installSoftware {-packageName XDAgent -hostName abc.com -platformType aix -installLocation C:/WXD61/Agent -adminName admin1 -adminPassword passw0rd1 -acceptLicense true -specialParms "{DISABLE_OS_PREREQ_CHECKING true}{USE_32BIT_IMAGE_ON_64BIT_OS true}"}- Use Jython string:
AdminTask.installSoftware ('[-packageName XDAgent -hostName abc.com -platformType windows -installLocation C:/WXD61/Agent -adminName admin1 -adminPassword passw0rd1 -specialParms "[DMGR_ADMIN_ID admin2][DMGR_ADMIN_PWD passw0rd2]" -acceptLicense true]')AdminTask.installSoftware ('[-packageName WASCE20 -featureList ServerAndSDK -hostName abc.com -platformType windows -installLocation "D:/WASCE20/CE_22409" -adminName admin1 -adminPassword passw0rd1 -acceptLicense true -specialParms "[NODE_TO_MANAGE_WASCE abcNode1][DISABLE_OS_PREREQ_CHECKING true]"]')AdminTask.installSoftware ('[-packageName XDAgent -hostName abc.com -platformType aix -installLocation C:/WXD61/Agent -adminName admin1 -adminPassword passw0rd1 -acceptLicense true -specialParms "[DISABLE_OS_PREREQ_CHECKING true][USE_32BIT_IMAGE_ON_64BIT_OS true]"]')Interactive mode example usage
- Use Jacl:
$AdminTask installSoftware {-interactive}- Use Jython string:
AdminTask.installSoftware ('[-interactive]')
installMaintenance
The installMaintenance command installs maintenance on the target host.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
- -hostName
- Name of the remote host. (String, required)
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
- -acceptLicense
- Specifies if the license agreement is accepted. Specify true to indicate that you reviewed and agreed to the terms of the IBM International Program License Agreement accompanying this program. Otherwise, you cannot proceed with the installation of the program or component. (String, required)
Optional parameters
- -fileList
- Specifies a list of .pak maintenance files to install on the remote target. This parameter is ignored if you install a predefined maintenance package. (String, optional)
- -installLocation
- Specifies the path of the installation directory in which to install the package on the remote host. Specify this parameter only if there are multiple installation locations that exist within the current cell on the same host. (String, optional)
- -adminPassword
- Specifies the administrative password for the remote host. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -privateKeyStore
- Specifies the path to the private key file, which is located on the deployment manager. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -keyStorePassword
- Specifies an optional password, which is also known as the pass phrase, that is used to protect the private key file. (String. Required if a non-blank password is used to protect the key file.)
- -tempDir
- Specifies the location of the temporary directory on the target host. If this parameter is omitted, the centralized installation manager uses the default temporary directory of the target host. (String, optional)
Batch mode example usage
- Use Jacl:
$AdminTask installMaintenance {-packageName ND61Maintenance -fileList "sample_file01, sample_file02" -hostName river.com -installLocation D:/WAS61 -adminName admin1 -adminPassword passw0rd1 -acceptLicense true}- Use Jython string:
AdminTask.installMaintenance ('[-packageName ND61Maintenance -fileList "sample_file01.pak, sample_file02.pak" -hostName river.com -installLocation D:/WAS61 -adminName admin1 -adminPassword passw0rd1 -acceptLicense true]')Interactive mode example usage
- Use Jacl:
$AdminTask installMaintenance {-interactive}- Use Jython string:
AdminTask.installMaintenance ('[-interactive]')
listPackagesForInstall
The listPackagesForInstall command lists all of the software packages that you can use the centralized installation manager to install.
Target object
None.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask listPackagesForInstall- Use Jython string:
AdminTask.listPackagesForInstall ()Interactive mode example usage
- Use Jacl:
$AdminTask listPackagesForInstall {-interactive}- Use Jython string:
AdminTask.listPackagesForInstall ('[-interactive]')
listFeaturesForInstall
The listFeaturesForInstall command lists the available features of a software package that you can use the centralized installation manager to install.
None of theWebSphere Virtual Enterprise components provide separately installable features. This command returns an empty list when used against one of theWebSphere Virtual Enterprise components.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask listFeaturesForInstall {-packageName sample_package}- Use Jython string:
AdminTask.listFeaturesForInstall ('[-packageName sample_package]')Interactive mode example usage
- Use Jacl:
$AdminTask listFeaturesForInstall {-interactive}- Use Jython string:
AdminTask.listFeaturesForInstall ('[-interactive]')
showPackageInfo
The showPackageInfo command displays general information about a specific software package.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask showPackageInfo {-packageName sample_package}- Use Jython string:
AdminTask.showPackageInfo ('[-packageName sample_package]')Interactive mode example usage
- Use Jacl:
$AdminTask showPackageInfo {-interactive}- Use Jython string:
AdminTask.showPackageInfo ('[-interactive]')
showLicenseAgreement
The showLicenseAgreement command displays the license agreement associated with the specified installation package.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
Optional parameters
- -showLicenseInfoOnly
- Specifies that only the content of the license file is shown. The default is false. (String, required)
Batch mode example usage
- Use Jacl:
$AdminTask showLicenseAgreement {-packageName sample_package}- Use Jython string:
AdminTask.showLicenseAgreement ('[-packageName sample_package]')Interactive mode example usage
- Use Jacl:
$AdminTask showLicenseAgreement {-interactive}- Use Jython string:
AdminTask.showLicenseAgreement ('[-interactive]')
getManagedNodesOnHostByInstallLoc
The getManagedNodesOnHostByInstallLoc command returns the names of the managed nodes that are defined in the current deployment manager cell. Issue this command when a host contains multiple installations of WebSphere Application Server Network Deployment with nodes that are federated into the same cell.
Target object
The required target object is the host name of the workstation containing the managed nodes that are federated into the current deployment manager cell.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask getManagedNodesOnHostByInstallLoc host_name- Use Jython string:
AdminTask.getManagedNodesOnHostByInstallLoc ('host_name')Interactive mode example usage
- Use Jacl:
$AdminTask getManagedNodesOnHostByInstallLoc {-interactive}- Use Jython string:
AdminTask.getManagedNodesOnHostByInstallLoc ('[-interactive]')
listManagedNodesOnHost
The listManagedNodesOnHost command list the managed nodes that are located on the federated host in the current deployment manager cell.
Target object
The required target object specifies the host name of the workstation containing the managed nodes that are federated into the deployment manager cell.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask listManagedNodesOnHost host_name- Use Jython string:
AdminTask.listManagedNodesOnHost ('host_name')Interactive mode example usage
- Use Jacl:
$AdminTask listManagedNodesOnHost {-interactive}- Use Jython string:
AdminTask.listManagedNodesOnHost ('[-interactive]')
testConnectionToHost
The testConnectionToHost command verifies that a connection can be established from the deployment manager to the remote host by using an administrator ID and password for the remote host.
Target object
None.
Required parameters
- -hostName
- Name of the remote host. (String, required)
- -platformType
- Specifies the operating system of the remote workstation. The valid types are: Windows, AIX, HP-UX, Linux, UNIX, or Solaris. This parameter is not case-sensitive. (String, required)
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
- -adminPassword
- Specifies the administrative password for the remote host. (String, required)
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask testConnectionToHost {-hostName big.mountain.com -platformType linux -adminName root -adminPassword passw0rd3}- Use Jython string:
AdminTask.testConnectionToHost ('[-hostName big.mountain.com -platfromType linux -adminName root -adminPassword passw0rd3]')Interactive mode example usage
- Use Jacl:
$AdminTask testConnectionToHost {-interactive}- Use Jython string:
AdminTask.testConnectionToHost ('[-interactive]')
testConnectionToHostUsingSSHKey
The testConnectionToHostUsingSSHKey command verifies that a connection can be established from the deployment manager to the remote host by using the Secure Shell (SSH) private key for the remote host.
Target object
None.
Required parameters
- -hostName
- Name of the remote host. (String, required)
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
- -privateKeyStore
- Specifies the path to the private key file, which is located on the deployment manager. (String, required)
- -keyStorePassword
- Specifies the password, which is also known as the pass phrase, that is used to protect the private key file. (String. Required if a non-blank password is used to protect the key file.)
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask testConnectionToHostUsingSSHKey {-hostName abc.com -adminName root -privateKeyStore /root/.ssh/id_rsa}- Use Jython string:
AdminTask.testConnectionToHostUsingSSHKey ('[-hostName abc.com -adminName root -privateKeyStore /root/.ssh/id_rsa]')Interactive mode example usage
- Use Jacl:
$AdminTask testConnectionToHostUsingSSHKey {-interactive}- Use Jython string:
AdminTask.testConnectionToHostUsingSSHKey ('[-interactive]')
installSSHPublicKeyOnHost
The installSSHPublicKeyOnHost command installs the administrative Secure Shell (SSH) public key on the remote host.
Target object
None.
Required parameters
- -hostName
- Name of the remote host. (String, required)
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
- -adminPassword
- Specifies the administrative password for the remote host. (String, required)
- -publicKeyStore
- Specifies the path to the public key file, which is located on the deployment manager, in either Internet Engineering Task Force (IETF) standard format or OpenSSH format.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask installSSHPublicKeyOnHost {-hostName abc.com -adminName root -adminPassword passw0rd3 -publicKeyStore /root/.ssh/id_rsa.pub}- Use Jython string:
AdminTask.installSSHPublicKeyOnHost ('[-hostName abc.com -adminName root -adminPassword passw0rd3 -publicKeyStore /root/.ssh/id_rsa.pub]')Interactive mode example usage
- Use Jacl:
$AdminTask installSSHPublicKeyOnHost {-interactive}- Use Jython string:
AdminTask.installSSHPublicKeyOnHost ('[-interactive]')
listKeyInstallationRecords
The listKeyInstallationRecords command lists the SSH public key installation records that the centralized installation manager maintains.
Target object
None.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask listKeyInstallationRecords- Use Jython string:
AdminTask.listKeyInstallationRecords ()Interactive mode example usage
- Use Jacl:
$AdminTask listKeyInstallationRecords {-interactive}- Use Jython string:
AdminTask.listKeyInstallationRecords ('[-interactive]')
updateKeyInstallationRecords
The updateKeyInstallationRecords command updates the SSH public key installation records that the centralized installation manager maintains.
Target object
None.
Required parameters
None.
Optional parameters
- -add
- Adds a list of host names to the installation records. (String, optional)
- -remove
- Removes a list of host names from the installation records. (String, optional)
Batch mode example usage
- Use Jacl:
$AdminTask updateKeyInstallationRecords {-add "abc.com,river.com"}- Use Jython string:
AdminTask.updateKeyInstallationRecords ('[-add "abc.com,river.com"]')Interactive mode example usage
- Use Jacl:
$AdminTask updateKeyInstallationRecords {-interactive}- Use Jython string:
AdminTask.updateKeyInstallationRecords ('[-interactive]')
listPendingRequests
The listPendingRequests command lists the submitted installation or uninstallation requests that are not started
Target object
None.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask listPendingRequests- Use Jython string:
AdminTask.listPendingRequests ()Interactive mode example usage
- Use Jacl:
$AdminTask listPendingRequests {-interactive}- Use Jython string:
AdminTask.listPendingRequests ('[-interactive]')
listInProgressRequests
The listInProgressRequests command lists the installation or uninstallation requests that are in progress for completion.
Target object
None.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask listInProgressRequests- Use Jython string:
AdminTask.listInProgressRequests ()Interactive mode example usage
- Use Jacl:
$AdminTask listInProgressRequests {-interactive}- Use Jython string:
AdminTask.listInProgressRequests ('[-interactive]')
listRequestsForTarget
The listRequestForTarget command lists all of the submitted installation and uninstallation requests for a specific host.
Target object
The required target object the host name of the target workstation. You must specify the same host name that you specify with the installSoftware and uninstallSoftware commands.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask listRequestsForTarget host_name- Use Jython string:
AdminTask.listRequestsForTarget ('host_name')Interactive mode example usage
- Use Jacl:
$AdminTask listRequestsForTarget {-interactive}- Use Jython string:
AdminTask.listRequestsForTarget ('[-interactive]')
showLatestInstallStatus
The showLatestInstallStatus command lists all of the submitted installation requests for a specific host.
Target object
The required target object is the host name of the target workstation. You must specify the same host name that you specify with the installSoftware command.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask showLatestInstallStatus host_name- Use Jython string:
AdminTask.showLatestInstallStatus ('host_name')Interactive mode example usage
- Use Jacl:
$AdminTask showLatestInstallStatus {-interactive}- Use Jython string:
AdminTask.showLatestInstallStatus ('[-interactive]')
uninstallSoftware
The uninstallSoftware command uninstalls the software package from the remote host.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
- -hostName
- Name of the remote host. (String, required)
- -platformType
- Specifies the operating system of the remote workstation. The valid types are: Windows, AIX, HP-UX, Linux, UNIX, or Solaris. This parameter is not case-sensitive. (String, required)
- -installLocation
- Specifies the path to the installation directory on the remote host. Specify this parameter only if there are multiple installation locations that exist within the current cell on the same host. (String, required)
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
Optional parameters
- -adminPassword
- Specifies the administrative password for the remote host. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -privateKeyStore
- Specifies the path to the private key file, which is located on the deployment manager. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -keyStorePassword
- Specifies an optional password, which is also known as the pass phrase, that is used to protect the private key file. (String. Required if a non-blank password is used to protect the key file.)
Batch mode example usage
- Use Jacl:
$AdminTask uninstallSoftware {-packageName XDAgent -hostName abc.com -platformType windows -installLocation C:/WXD61/Agent -adminName admin1 -adminPassword passw0rd1}- Use Jython string:
AdminTask.uninstallSoftware ('[-packageName XDAgent -hostName abc.com -platformType windows -installLocation C:/WXD61/Agent -adminName admin1 -adminPassword passw0rd1]')Interactive mode example usage
- Use Jacl:
$AdminTask uninstallSoftware {-interactive}- Use Jython string:
AdminTask.uninstallSoftware ('[-interactive]')
uninstallMaintenance
The uninstallMaintenance command uninstalls maintenance, such as fix packs and interim fixes, from the remote host.
Target object
None.
Required parameters
- -packageName
- Name of the software package. (String, required)
- -hostName
- Name of the remote host. (String, required)
- -adminName
- Specifies the administrative ID for the remote host. (String, required)
Optional parameters
- -fileList
- Specifies a list of maintenance files to uninstall on the remote target. (String, optional)
- -installLocation
- Specifies the path to the installation directory on the remote host. Specify this parameter only if there are multiple installation locations that exist within the current cell on the same host. (String, optional)
- -adminPassword
- Specifies the administrative password for the remote host. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -privateKeyStore
- Specifies the path to the private key file, which is located on the deployment manager. Specify either the -adminPassword parameter or the -privateKeyStore parameter to authenticate. (String, optional)
- -keyStorePassword
- Specifies an optional password, which is also known as the pass phrase, that is used to protect the private key file. (String. Required if a non-blank password is used to protect the key file.)
Batch mode example usage
- Use Jacl:
$AdminTask uninstallMaintenance {-packageName XD61Maintenance -hostName river.com -adminName admin1 -adminPassword passw0rd1 -fileList "6.1.0.0-WS-WXDOP-IFPKxxxxx.pak,6.1.0.0-WS-WXDOP-IFPKyyyyy.pak"}- Use Jython string:
AdminTask.uninstallMaintenance ('[-packageName XD61Maintenance -hostName river.com -adminName admin1 -adminPassword passw0rd1 -fileList "6.1.0.1-WS-WXDOP-IFPKxxxxx.pak,6.1.0.1-WS-WXDOP-IFPKyyyyy.pak"]')Interactive mode example usage
- Use Jacl:
$AdminTask uninstallMaintenance {-interactive}- Use Jython string:
AdminTask.uninstallMaintenance ('[-interactive]')
showLatestUninstallStatus
The showLatestUninstallStatus command displays the status of the most recently submitted uninstallation request.
Target object
The required target object is the host name of the target workstation. You must specify the same host name that you specify with the uninstallSoftware command.
Required parameters
None.
Optional parameters
None.
Batch mode example usage
- Use Jacl:
$AdminTask showLatestUninstallStatus host_name- Use Jython string:
AdminTask.showLatestUninstallStatus ('host_name')Interactive mode example usage
- Use Jacl:
$AdminTask showLatestUninstallStatus {-interactive}- Use Jython string:
AdminTask.showLatestUninstallStatus ('[-interactive]')
Related tasks
Use the centralized installation manager to manage your environment