Upgrading Local Workstation Service software
There are three ways to upgrade the Local Workstation Service:
Running the
hipamlws*.msi
installer and going through the wizard pages.This will look like a normal Local Workstation Service installation, where the server, proxy, initial delay and custom attribute file settings are retained.
Running
hipamlws*.msi
via command line (details below).Uninstall the old client and install the new client with the Re-register this workstation option selected in the Advanced settings.
Upgrading Local Workstation Service software via command line
To upgrade Local Workstation Service software via command line:
Download the Local service mode software MSI and drop a copy of the
idmsetup.inf
file into the same folder before continuing install (asidmsetup.inf
will feed required information to the LWS installer).Ensure that
idmsetup.inf
contains the correct SERVER propertyOpen a command prompt, change to the download folder, then use msiexec to perform the upgrade (see examples below).
Property | Description |
---|---|
IGNORE_EXISTING_SERVER | Don't propagate SERVER property value from previously installed local service mode software. |
IGNORE_EXISTING_PROXY | Don't propagate PROXY property value from previously installed local service mode software. |
IGNORE_EXISTING_CUST_ATTR_FILE | Don't propagate CUST_ATTR_FILE property value from previously installed local service mode software. |
IGNORE_EXISTING_VERIFY_CERT | Don't propagate VERIFY_CERT property value from previously installed local service mode software. |
12.5+ installation The properties below were added in Bravura Security Fabric 12.5.0. | |
IGNORE_EXISTING_DEFAULT_POLL_TIME | Don't propagate DEFAULT_POLL_TIME property value from previously installed local service mode software. |
IGNORE_EXISTING_DEFAULT_RESYNC_INTERVAL | Don't propagate DEFAULT_RESYNC_INTERVAL property value from previously installed local service mode software. |
IGNORE_EXISTING_INITIAL_POLL_DELAY | Don't propagate INITIAL_POLL_DELAY property value from previously installed local service mode software. |
IGNORE_EXISTING_UPDATE_INTERVAL | Don't propagate UPDATE_INTERVAL property value from previously installed local service mode software. |
IGNORE_EXISTING_DEFAULT_ATTRIBUTE_UPDATE_DELAY | Don't propagate DEFAULT_ATTRIBUTE_UPDATE_DELAY property value from previously installed local service mode software. |
IGNORE_EXISTING_WS_ID | Don't propagate WS_ID property value from previously installed local service mode software. |
During upgrade, the installer will attempt to retain the following properties from the original installation.
SERVER
PROXY
CUST_ATTR_FILE
VERIFY_CERT
DEFAULT_POLL_TIME
DEFAULT_RESYNC_INTERVAL
INITIAL_POLL_DELAY
UPDATE_INTERVAL
DEFAULT_ATTRIBUTE_UPDATE_DELAY
WS_ID
These can be specified in the command if there is a need to replace them.
Command line examples for upgrade
Upgrade and propagate all supported property values from a previous installation:
msiexec /l*v upgrade.log /i hipamlws-win-x64.msi REINSTALLMODE=amus ADDLOCAL=ALL UPGRADE=ALL
Upgrade and propagate all supported property values except INITIAL_POLL_DELAY and PROXY from a previous installation:
msiexec /l*v upgrade.log /i hipamlws-win-x64.msi REINSTALLMODE=amus ADDLOCAL=ALL UPGRADE=ALL IGNORE_EXISTING_INITIAL_POLL_DELAY="1" IGNORE_EXISTING_PROXY="1"
Upgrade and propagate all supported property values except INITIAL_POLL_DELAY. For INITIAL_POLL_DELAY, specify a new value (55 seconds):
msiexec /l*v upgrade.log /i hipamlws-win-x64.msi REINSTALLMODE=amus ADDLOCAL=ALL UPGRADE=ALL INITIAL_POLL_DELAY="55"