# CapaInstallerAgentSetup.exe

> The combined 32/64-bit agent installer, which is an executable bootstrapper and cannot be split into separate MSI packages.

Source: https://docs.capaone.com/capainstaller/installation-and-maintenance/agent-deployment/capainstalleragentsetup-exe/  
Product: CapaInstaller — a separate CapaSystems product; do not apply this page to any other.

### Installation media

The CapaInstallerAgentSetup.exe is a combined 32/64-bit MSI installation package, wrapped in an executable bootstrapper.

The package can not be divided/extracted into separate 32/64-bit MSI files but must be installed using the bootstrapper.

#### Requirements

To install the agent on a computer, the CapaInstaller Agent.xml configuration file for the target point must reside in the same folder as the installer, this file is found at `<Management Server>\<Point share>\Resources\Agent`

Also if customLib.cis exists in the same folder as the installer, it will be copied to the agent install folder before starting services.

⚠️ Microsoft .Net 2.0 has to be installed before running this installation

#### Parameters

Since the installer is a basic MSI, it supports all the common MsiExec parameters and properties.  
For a current command reference type

**Cmd**

```cmd
msiexec /help
```

 in a command line

#### Properties

The installer supports the following properties

| PARAMETER     | VALUES                  | SAMPLE           | DESCRIPTION                                                                                                                           |
|:--------------|:------------------------|:-----------------|:--------------------------------------------------------------------------------------------------------------------------------------|
| DEPARTMENT    | \<department group name\> | DEPARTMENT=002   | Specifies the department value that is to be branded in the registry, if specified the installer dialog is suppressed                 |
| STARTSERVICES | NO/YES                  | STARTSERVICES=NO | Controls if the ciStub and ciInstSvc services are to be started when the installation is complete. If not specified, the value is YES |

#### Example

the following example will install the agent silently for the department "002", will not start services after installation, create a log file in C:\temp\ and suppress reboots

**Cmd**

```cmd
CapaInstallerAgentSetup.exe /L*v "C:\temp\myLog.log" /qn REBOOT=REALLYSUPPRESS STARTSERVICES=NO DEPARTMENT=002
```
