autores
Use the autores
program to determine the automatic role and group deficits and surpluses and issue requests. When automatic assignment is configured, the program is run automatically at the end of the auto discovery process.
Usage
autores.exe -all [-submit | [-limitsubmit <max submissions> | -outfile <outfile> ] | -listfile <listfile> ] [-threshold <N>] autores.exe -group <targetid> <groupid> [-submit | [-limitsubmit <max submissions> | -outfile <outfile> ] | -listfile <listfile> ] [-threshold <N>] autores.exe -role <role id> [-deleteonly | -submit | [-limitsubmit <max submissions> | -outfile <outfile> ] | -listfile <listfile> ] [-threshold <N>]
Option | Description |
---|---|
-all | Act on all resources. |
-group <targetid> <groupid> | Act on the specified target system group. |
-role <role id> | Act on the specified role. |
-deleteonly | Automatic unassignment to a specified role. |
-inputfile <inputfile> | File containing changes to submit. |
-submit | Submit the requests for changes. |
-limitsubmit <max submissions> | Limit the number of requests generated. Will override AUTO ASSIGNMENT MAXSUBMIT DEFAULT setting. |
-listfile <listfile> | File to output violations to (default is autores.kvg). |
-outfile <outfile> | Output file for printing all violations that did not get submitted along with the error message returned. (default is autores-unsubmitted.kvg) |
-threads <number of threads> | Use this for the number of threads to use when submitting requests to resolve violations (default is 4). |
-threshold <N> | Do not submit any request if number of requests to be submitted exceeds <N>. If N= 0 , no threshold. Using this setting overrides the AUTO ASSIGNMENT THRESHOLD system variable. |
Examples
To evaluate all the resources with automatic assignment configured and submit requests:
autores.exe -all -submit
To evaluate all the resources with automatic assignment configured, output to a
dryrun.kvg
file without submitting requests:autores.exe -all -listfile dryrun.kvg
To submit the
dryrun.kvg
file:autores.exe -submit -inputfile dryrun.kvg
To evaluate the role with automatic assignment configured and submit requests:
autores.exe -role GENERAL -submit
To evaluate the role with automatic unassignment configured and submit requests:
autores.exe -role GENERAL -deleteonly -submit
To evaluate a group with automatic assignment configured and submit requests:
autores.exe -group AD FINANCE -submit
To evaluate multiple groups and roles with automatic assignment configured, and submit requests:
autores.exe -group AD FINANCE -group AD HR -role GENERAL -role HELPDESK -submit