Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Install the Agent Client Collector on a Windows machine using silent installation

Install the Agent Client Collector on a Windows machine using silent installation when you want to deploy the agent at scale.

About this task

Silent installation automatically creates a local user called servicenow (unless another existing user is invoked with the LOCALUSERNAME parameter, as described in the command parameters table in the following procedure). The servicenow user password is randomly generated and is not stored in the system. A security event is created on the host machine which, if repeated, requires opening a support case. For details, see KB1649116 article in the Now Support Knowledge Base.

Before you begin

ACC installs need to access this URL: https://install.service-now.com/.

Enable golden image mode for cloning additional agents by setting the msi property GOLDEN_IMAGE=true.

Role required: agent_client_collector_admin

Procedure

  1. Navigate to All > Agent Client Collector > Deployment > Agent Downloads.

  2. From the Windows Download section, download the MSI installer by selecting the Download icon (

Image omitted: icon-download-blue.png
Select the download icon to download the application.\).
Image omitted: console-download-acc-win-installer2.png
Page where you can download Agent Client Collector.
  1. To run Silent installation to disable installation reports, run the command line appearing in the Silent installation section of the procedure, as follows:

    msiexec /i <msi_file_path> /quiet /qn /norestart ACC_API_KEY=<key_value> ACC_MID=wss://<mid_ip>:<websocket_port>/ws/events ACC_ALLOW_LIST=False

    To enable the allow list of specified checks when running silent installation, set the ACC_ALLOW_LIST parameter to True.

  2. To configure multiple MID Servers with Silent installation, run the command line appearing in the Silent installation section of the procedure with comma separated values, as follows:

    msiexec /i <msi_file_path> /quiet /qn /norestart ACC_API_KEY=<key_value> ACC_MID="wss://<mid1_ip>:<websocket1_port>/ws/events,wss://<mid2_ip>:<websocket2_port>/ws/events"

    Insert the following parameter values in the command:

ParameterTypeValue
ACC\_API\_KEYStringThe API key used to access the MID Server websocket.
ACC\_MIDStringThe URL of the MID Server websocket.
ACC\_ALLOW\_LISTBooleanIndicates whether the allow-list is enabled \(True\) or disabled \(False\).Default = True
START\_SERVICEBooleanIndicates whether the agent starts automatically upon installation \(true\) or must be started manually \(false\).Default = True
LOCALUSERNAMEStringAccount running the Agent Client Collector as a Windows service. Possible values:- SYSTEM - LOCALSERVICE - DOMAIN\\gMSA$ - string \(local username\) Default = `servicenow` When using the SYSTEM, LOCALSERVICE, or DOMAIN\\gMSA$ accounts: - You do not have to configure a password. - You must run the relevant .msi command, as described in Account commands for LocalService, LocalSystem, and gMSA during Windows installation.
LOCALUSERPASSWORDStringPassword used to access the agent.Default = <randomly generated password>
ISDOMAINBooleanAssigns a domain user account to the Windows service. Possible values:- 0 - DOMAIN is ignored - 1 - DOMAIN is used
DOMAINStringIndicates the user domain. Applies only to domain user accounts \(not gMSA\)
PASSWORD\_NEVER\_EXPIRESBooleanIndicates whether the user password expires \(false\) or never expires \(true\).Default = false
SN\_PROG\_ROOTStringIndicates the installation path for the agent's application files. Enclose the path in quotes.For example: SN\_PROG\_ROOT="D:\\ServiceNow\\agent-client-collector"
The configured MID Server values are automatically added to the `acc.yml` file. The agent connects to the first available MID Server in the list.

To configure a secondary MID server, enter the following syntax in the `backend-url` section of the `acc.yml` file, per the `.yml` standard: `- "wss://<MID IP>:<Web socket port>/ws/events"` \(with the quotation marks\).

For the `<MID IP>` value, you can assign either the MID FQDN or CNAME. To enable high availability, use either the Auto MID Selection algorithm, or manage a virtual IP with a load balancer. For more information, see the [ITOM Agent Client Collector documentation material \[KB1122613\]](https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1122613) article in the HI Knowledge Base.

Parent Topic:Agent Client Collector installation on a Windows machine