Installing and Customizing ActivClient Setup Using Command Line or PowerShell
Installing ActivClient via the command line or PowerShell enables automation of the installation process and provides more extensive customization options than the interactive Installation Wizard.
- <path> refers to the ActivClient setup MSI file path.
<ActivClient_setup> refers to the ActivClient setup MSI file name.
<FeatureName> refers to the name of the respective ActivClient feature to include in or exclude from the setup. For a list of features and their names, see Components and Sub-Components.
Quotation marks in the commands are required if the path or file name contains spaces. They are optional otherwise but recommended for consistency.

Installing the Default ActivClient Setup
To install ActivClient using the Microsoft Installer (MSI) with the default configuration, run the following command:
msiexec.exe /i "<path>\<ActivClient_setup>"
This performs the same default installation as when double-clicking the setup file and selecting the Typical option in the Installation Wizard.

Excluding Features During Installation
To exclude one or several features from the setup program, use the following command:
msiexec /i "<path>\<ActivClient_setup>" AddLocal=ALL Remove=<FeatureName1>,<FeatureName2>
For a list of features and their names, see Components and Sub-Components.

Forcing Features During Installation
To force installation of one or several features from the setup program, use the following command:
msiexec.exe /i "<path>\<ActivClient_setup>" AddLocal=<FeatureName1>,<FeatureName2>
When installing ActivClient with this command, you need to list all the features that you want to install.
For a list of features and their names, see Components and Sub-Components.

Removing Features From Existing Installation
To remove one or several features from an existing installation, use the following command:
msiexec /i "<path>\<ActivClient_setup>" Remove=<FeatureName1>,<FeatureName2>
For a list of features and their names, see Components and Sub-Components.

Adding Features to Existing Installation
When modifying an existing installation, you can use AddLocal to add only the features that you want to install.
To add one or several features to an existing installation, use the following command:
msiexec.exe /i "<path>\<ActivClient_setup>" AddLocal=<FeatureName1>,<FeatureName2>
For a list of features and their names, see Components and Sub-Components.