Launch Apps After First Time Authentication

Configure Imprivata MDA to automatically launch one or more apps and proxy the user credentials into the apps after the user authenticates for the first time during their shift.

Prerequisites

Take note of the following prerequisites:

  • Requires Imprivata MDA 7.18 or later.

Configure Launching Apps after First Time Authentication

NOTE:

This feature is configured via the AppConfig using an MDM. See the Imprivata MDA AppConfig Reference for supported MDM AppConfig keys.

Add the following keys to the AppConfig in your MDM:

ConfigFlags - Allows Imprivata MDA to launch an array of apps and proxy the user's credentials into the apps.

  • The AppConfig Configuration Key field for this feature is "ConfigFlags".

  • The AppConfig Value Type for this feature is "String".

  • The AppConfig Value is AutostartApps:[appPackagenames], AutostartDelayMillis: 4000, AutostartPeriodMillis: 3000,

    where the following values are comma-separated:

    • AutostartApps is an array of the app package names to launch, enclosed in square brackets.

    • AutostartDelayMillis is the delay, in milliseconds, before Imprivata MDA starts processing the apps to launch.

    • AutostartPeriodMillis is the delay, in milliseconds, between AutostartApps attempts.

      If only a single app is launched, AutostartPeriodMillis can be omitted.

Example 1

The following example is for launching a single app:

Copy
AutostartApps=[com.epic.rover], AutostartDelayMillis=400

Example 2

The following example is for launching two apps:

Copy
AutostartApps=[com.epic.rover, com.microsoft.teams], AutostartDelayMillis=400, AutostartPeriodMillis=2000