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
To check all disabled users:
userstatus.exe -check
Or,
userstatus.exe -check -all
To check an individual disabled user:
userstatus.exe -check -user <userid>
To disable an individual user:
userstatus.exe -user <userid> -disable
To disable a group of users:
userstatus.exe -lst <listfile>
Or,
userstatus.exe -user <user*> -isregexp
To enable all users whose user ID contains "qa":
userstatus.exe -user qa* -isregexp -enable