Skip to main content

Celonis Product Documentation

Centralized Admin Rollout Options

How to Install the Application from Command Prompt from version 2.3.0
Proxy Support

Note

You must have admin rights to install the application from a command prompt.

Task Mining Client supports:

  • System proxy support

  • Active Directory Authentication

  • Support for proxy configuration scripts

Connect Client to Team/Project during centralized installation

During the installation, an admin can instruct the Task Mining Client to directly connect to a team and project. In this way, the end-users don't have to be instructed to do it and can directly start with capturing data.

msiexec.exe /qb /[i|x] CelonisTaskMining.Installer.msi [ACTIVATIONLINKURLPROPERTY=<activation_link_url>] [SECUREGATEWAYSERVERPROPERTY=<secure_gateway_server_url>] [CLIENTCERTIFICATESUBJECTPROPERTY=<client_certificate_subject>] [CHROMEEXTENSIONPROPERTY={0|1}] [EDGEEXTENSIONPROPERTY={0|1}] [CHROMEUPDATEURL=<update_url>] [EDGEUPDATEURL=<update_url>] [CUSTOMEXTENSIONIDS=<custom_extension_id>] [SPNPROPERTY=<service_principal_name_identifier>] [TIMEOUTPROPERTY=<connection_timeout>]

Parameters - Centralized Admin Rollout Options

Parameter

Description

/qb

Specifies there is a basic UI during the installation process.

/i

Specifies normal installation.

/x

Uninstalls the package.

CHROMEEXTENSIONPROPERTY

Enables or disables installation of the Google Chrome extension, default value is 1.

EDGEEXTENSIONPROPERTY

Enables or disables installation of the Microsoft Edge extension, default value is 1.

SECUREGATEWAYSERVERPROPERTY

Assigns the Secure Gateway Server URL.

CLIENTCERTIFICATESUBJECTPROPERTY

Assigns the client certificate subject name. The certificate must be installed in the Windows certificate store under Current User/Personal store.

ACTIVATIONLINKURLPROPERTY

Assigns the activation link URL.

SPNPROPERTY

Assigns the Service Principal Name of the Gateway service to enable authenticating with on-premise event collection service.

CUSTOMEXTENSIONIDS

Assigns custom Chrome extension id value (in case of multiple values, they should be separated by commas ‘,’).

CHROMEUPDATEURL

Changes the Update URL location for installing and updating the Chrome extension to an alternative repository. Default value is Chrome Web Store.

EDGEUPDATEURL

Changes the Update URL location for installing and updating the Edge extension to an alternative repository. Default value is Chrome Web Store.

TIMEOUTPROPERTY

Assigns the connection timeout.

Examples of Centralized Admin Rollout Options

To install the application:

  • With a secure gateway configuration:

    msiexec.exe /qb /i CelonisTaskMining.Installer.msi SECUREGATEWAYSERVERPROPERTY="myserver.com" CLIENTCERTIFICATESUBJECTPROPERTY="certificate subject"

  • With an activation link on installation:

    msiexec.exe /qb /i CelonisTaskMining.Installer.msi ACTIVATIONLINKURLPROPERTY="https://team.domain.celonis.cloud/task-mining/join?code=1234-5678-9012-1234"

  • Without extensions:

    msiexec.exe /qb /i CelonisTaskMining.Installer.msi CHROMEEXTENSIONPROPERTY=0 EDGEEXTENSIONPROPERTY=0

  • With custom extension Id:

    msiexec.exe /qb /i CelonisTaskMining.Installer.msi CUSTOMEXTENSIONIDS="abcdefghijklmnopqrstuvwxyz"

  • With Chrome extension from a different store:

    msiexec.exe /qb /i CelonisTaskMining.Installer.msi CHROMEUPDATEURL="http://myserver.com/extension_store"

To uninstall the application:

msiexec.exe /qb /x CelonisTaskMining.Installer.msi

How to configure the application to run over a secure gateway service (from version 2.1.4)

Note

You can either configure the secure gateway service settings from the MSI installer while installing the application or perform the steps given below. Both require Admin rights.

  1. Create a registry key for the path Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Celonis\TaskMining

  2. Create a registry string value under the previous path with the name secure_gateway_server

  3. Assign the URL of the secure gateway server to the secure_gateway_server ex: mysecuregatewayserver.com/company

    You can secure multiple gateways here by appending additional gateways using a semi-colon delimiter. For example: secure_gateway_server=server1.com;server2.commysecuregatewayserver.com/company

  4. Create a registry string value under the same path with the name client_certificate_subject

  5. Install the client certificate that will be used to authenticate the secure gateway server under Current User/Personal store

  6. Assign the Subject of the client certificate to the client_certificate_subject ex: My Certificate

  7. Create a registry string value under the same path with the name: service_principal_name.

  8. Assign the unique identifier of the secure gateway service instance to the service_principal_name.

  9. To rollback, remove the registry values given above.