Skip to main content

userstatus

Use the userstatus program to enable and disable user profiles, or to check user profile status from the command line. Disabling a user’s profile revokes their access to Bravura Security Fabric and any privileged access requests.

Usage
userstatus.exe -user <userid> [-isregexp] | -lst <listfile> [-check | -enable | -disable]

If you only specify the -user argument, then by default, userstatus tries to enable the specified user.

Argument

Description

-user <userid>

Specifies an individual user profile.

-lst <listfile>

Specifies a list of users instead of using the -user argument to specify an individual user.

-check

Displays the profile status of the specified user. To check all users, do not use the -user argument, or type -check -all.

-enable

Enables the profile of the specified user. This argument is applied by default if the -user argument is specified on its own.

-disable

Disables the profile of the specified user, automatically checks in the user’s password access and cancels access requests if applicable.

-isregexp

Used in conjunction with the -user argument, a regular expression can be written in the <userid> variable to match user IDs.

Examples
  1. To check all disabled users:

    userstatus.exe -check

    Or,

    userstatus.exe -check -all
  2. To check an individual disabled user:

    userstatus.exe -check -user <userid>
  3. To disable an individual user:

    userstatus.exe -user <userid> -disable
  4. To disable a group of users:

    userstatus.exe -lst <listfile>

    Or,

    userstatus.exe -user <user*> -isregexp
  5. To enable all users whose user ID contains "qa":

    userstatus.exe -user qa* -isregexp -enable