Skip to main content

didtovault

Use the didtovault program to move ID files from the Bravura Security s DID table to a Lotus Notes ID vault. This program is installed with Bravura Security Fabric .

Usage
didtovault.exe -s <server> -t <target> -vault <vault>
               [-ai <IDfile> -ap <password>]
               [-all | -ei <longID> | -ui <longID>]
               [-r] [--retries <N>] [-verbose]

Argument

Description

-s <server> — --server <server>

The name of the Domino server containing the ID vault. (required)

-t <target> — --target <target>

The target system ID of the Domino server. (required)

-vault <vault>

Specify the name of the vault database, including relevant path information as required. For example, IBM_ID_VAULT\vault.nsf (required)

-ai <IDfile> — --adminfile <IDfile>

An administrator’s ID file with permission to access the Notes ID vault. Must be used in conjunction with the - -adminpass option.

-ap <password> — --adminpass <password>

The password for the administrator’s ID. Must be used in conjunction with the --adminfile option.

-all

Move all accounts; this is default behavior. This option cannot be used with --userid or --excludeid .

-ei <longID> — --excludeid <longID>

Exclude the specified account ID of a specific user in the DID table; specify an account using the longid. Use --excludeid multiple times to specify multiple users. All users that are not specified with --excludeid are processed. This option cannot be used with -all or --userid .

-ui <longID> — --userid <longID>

Move the specified account ID of a specific user in the DID table; specify an account using the longid. Use --userid multiple times to specify multiple users. Only users that are specified with --userid are processed. This option cannot be used with -all or --excludeid .

-r — --remove

Remove ID files from the DID table upon successful transfer.

--retries <N>

Specify the number of retry attempts for failed inserts. Specify a value between 0 and 1000; the default is 3.

-verbose

Write verbose output.

Examples
  1. Move all users to the vault:

    didtovault.exe -ai admin.id -ap p455w0rD -s 10.0.1.68 -t LOTUS4 -all -vault "IBM_ID_VAULT\vault.nsf" -verbose
  2. Move specified users to the vault:

    didtovault.exe -ai admin.id -ap p455w0rD -s 10.0.1.68 -t LOTUS4 -ui "CN=user1 vault/O=hrnyc" -vault "IBM_ID_VAULT\vault.nsf" -verbose
  3. Exclude specified users from being moved to the vault:

    didtovault.exe -ai admin.id -ap p455w0rD -s 10.0.1.68 -t LOTUS4 -vault "IBM_ID_VAULT\vault.nsf" -verbose -ei "CN=user1 vault/O=hrnyc"
  4. Remove users from the DID table after a successful move:

    didtovault.exe -ai admin.id -ap p455w0rD -s 10.0.1.68 -t LOTUS4 -ui "CN=user1 vault/O=hrnyc" -vault "IBM_ID_VAULT\vault.nsf" -verbose -r
  5. Exclude specified users from being moved to the vault, then delete the successfully moved DIDs:

    didtovault.exe -ai admin.id -ap p455w0rD -s 10.0.1.68 -t LOTUS4 -ei "CN=user1 vault/O=hrnyc" -vault "IBM_ID_VAULT\vault.nsf" -verbose -r