Active Directory - Create user
Declaration
<AMACTIVEDIRECTORY AUTHTYPE="text (options)" USERNAME="text" PASSWORD="text (encrypted)" LDAPPATH="text" FIRSTNAME="text" INITIALS="text" LASTNAME="text" FULLNAME="text" USER="text" PREWINDOWLOGONUSERNAME="text" NEWPASSWORD="text (encrypted)" EMAIL="text" USERCANNOTCHANGEPASSWORD="yes/no" PASSWORDNEVEREXPIRES="yes/no" DISABLEACCOUNT="yes/no" />
Description: Creates a new user at the specified Active Directory location.
Practical Usage
Commonly used to the normally tedious process of creating new Active Directory users. Use the Active Directory - Create group activity to create a group in which to add users to.
User Parameters
Property |
Type |
Required |
Default |
Markup |
Description |
---|---|---|---|---|---|
Parent path |
Text |
Yes |
(Empty) |
LDAPPATH= "LDAP://DC=netauto,DC=com" |
The Lightweight Directory Access Protocol (LDAP) path of the parent Active Directory container. This is usually the top most container or rootDSE path, the root of the directory data tree on a directory server. Click the Select Container button to launch a standard Windows Active Directory dialog box that allows for the selection an Active Directory container. |
First name |
Text |
Yes |
(Empty) |
FIRSTNAME="Mike" |
The first name of the Active Directory user to be created. |
Initials |
Text |
No |
(Empty) |
INITIALS="R" |
The initials of the Active Directory user to be created. |
Last name |
Text |
No |
(Empty) |
LASTNAME="Rogers" |
The last name of the Active Directory user to be created. |
Full name |
Text |
Yes |
First, Middle Initial & Last Name parameters combined |
FULLNAME="Mike R. Rogers |
The full name of the Active Directory user to be created. This property defaults to the data entered in the font-weight: bold;">First name, font-weight: bold;">Initials and font-weight: bold;">Last name parameters combined. |
Login
Property |
Type |
Required |
Default |
Markup |
Description |
---|---|---|---|---|---|
User logon name (@domain is allowed) |
Text |
Yes |
(Empty) |
USER="MRogers@netauto.com" |
The logon name of the Active Directory user to be created. |
User logon name (Pre-Windows 2000) |
Text |
Yes |
(Empty) |
PREWINDOWLOGONUSERNAME="MRogers" |
The Pre-Windows 2000 logon name of the Active Directory user to be created. This defaults to the data entered in the User Logon Name (@domain is allowed) property minus the @domain parameter (if applicable). |
Password |
Text |
Yes |
(Empty) |
NEWPASSWORD="password" |
The logon password of the Active Directory user to be created. |
|
Text |
No |
(Empty) |
EMAIL="mike@netauto.com" |
The e-mail address of the Active Directory user to be created. |
User must change password at next login |
Yes/No |
No |
No |
MUSTCHANGEPASSWORD="YES" |
If set to Yes, specifies that the user must modify his/her password at next login session. If set to No, the user must use the password specified in the Password parameter. The default value is No. |
User cannot change password |
Yes/No |
No |
No |
USERCANNOTCHANGEPASSWORD="YES" |
If set to Yes, specifies that the user cannot change the assigned password. The default value is No. This parameter is available only if the User must change password at next login parameter is set to No. |
Password never expires |
Yes/No |
No |
No |
PASSWORDNEVEREXPIRES="YES" |
If set to Yes, indicates that the assigned password never expires. The default value is No. |
Account is disabled |
Yes/No |
No |
No |
DISABLEACCOUNT="YES" |
If set to Yes, indicates that the account to be created is in a disabled state. The default value is No. |
Credentials Parameters
Property |
Type |
Required |
Default |
Markup |
Description |
---|---|---|---|---|---|
Authentication type |
Text (options) |
No |
Default |
AUTHTYPE="Encryption" |
Specifies the types of authentication used. The available options are:
|
Username |
Text |
No |
(Empty) |
USERNAME="username" |
The username context that this activity will execute under. Leave the Username and Password parameters blank in order to use the logon user's credentials. NOTE: A Domain User has permission to access Active Directory information. However, only a Domain Administrator has permission to perform Active Directory modifications. |
Password |
Text |
No |
(Empty) |
PASSWORD="password" |
The password associated to the Username context that this activity will execute under. Leave the Username and Password parameters blank to use the logon user's credentials. |
Description tab - A custom description can be provided on the Description tab to convey additional information or share special notes about a task step.
Error Causes tab - Specify how this step should behave upon the occurrence of an error. (Refer to Task Builder > Error Causes Tab for details.)
On Error tab - Specify what AWE should do if this step encounters an error as defined on the Error Causes tab. (Refer to Task Builder > On Error Tab for details.)
Example
The sample AML code below can be copied and pasted directly into the Steps panel of the Task Builder.
Description: Create user "PParker" (full name: Peter Parker) at location "LDAP://mycompanyserver.com".
<CREATEADUSER LDAPPATH="LDAP://mycompanyserver.com" FIRSTNAME="Peter" INITIALS="S" LASTNAME="Parker" FULLNAME="Peter S. Parker" USER="PParker" PREWINDOWLOGONUSERNAME="PParker" NEWPASSWORD="AM2KhmMg3vfZtsoGZuDe99x2z8Z6IMd3xXZaME" EMAIL="PParker@mycompany.com" MUSTCHANGEPASSWORD="YES" USERNAME="username" PASSWORD="AM2LRmbg3zfZtstGZuDfN9m20wZ6IMd3xXbaME" />