Previous Topic: General Variables

Next Topic: List of Components

Examples

This example installs a CMS. The installation folder is C:\CA DLP. The primary administrator is frankschaeffer (password: dsf8534mnfg).

msiexec /i <Path>\server.msi 
  INSTALLDIR="C:\CA DLP"
  WGNADMINUSERNAME=frankschaeffer
  WGNADMINPASSWORD=dsf8534mnfg
  WGNSERVERTYPE=CMS

This example silently installs a client machine to C:\Program Files\CA DLP. The parent server is CMS‑HARDY. The installation also includes two transforms.

msiexec /i <Path>\client.msi /qn
  INSTALLDIR="C:\Program Files\CA DLP"
  WGNPARENTSERVERNAME="CMS-HARDY"
  TRANSFORMS=ClientLockDown.mst;
  EnableAppmon.mst

This example silently uninstalls a client machine but retains the local database:

msiexec /x <Path>\client.msi /qn WGNDELETEDATABASE=0

This example ensures that new users are always added to the ‘Sales’ group:

msiexec /i <Path>\client.msi /qn
  WGNDEFAULTUSERGROUPPATH=Users/Sales