Configuring the UMRA project
In the example, an UMRA project is used to create a user account. The project takes two input variables: %FirstName% and %LastName%. From these names, the project generates a unique user account name (%UserName%) and creates the user account. Also, a random password (%Password%) is generated.
The UMRA project is a form project that contains only a script, not a form. The UMRA form project is contained in file
.\Example Projects\Automation\VBScript\MsAccess\ CreateAccount.ufp
relative to the UMRA Console program directory.

Figure 2: The script of the UMRA Form project used to create the account.
The script contains 3 lines only. In the first 2 lines the following variables are set: %MiddleName% and %Domain%. The %MiddleName% variable is set to an empty string. The %MiddleName% is used in the name generation algorithm and always specified as an empty string. The %Domain% is set equal to the DNS name of the domain in which the user accounts are created: tools4ever.local2. You need to adjust this value to make the project work in your own environment.
|