Active Directory - Set object property
Declaration
<AMACTIVEDIRECTORYACTIVITY="set_object_property" AUTHTYPE="text (options)" USERNAME="text" PASSWORD="text (encrypted)" LDAPPATH="text" ADOBJECT="text (options)" PROPERTYNAME="text (options)" PROPERTYVALUE="text" />
Description: Sets the specified property of the selected Active Directory object to the desired value.
Practical Usage
Can be used to modify specific properties of an AD object. For example, when you rename Active Directory user accounts, you can rename properties such as Common Name (CN), Distinguished Name (DN) and Last Name (SN).
Object Parameters
Property |
Type |
Required |
Default |
Markup |
Description |
---|---|---|---|---|---|
Path |
Text |
Yes |
(Empty) |
LDAPPATH= "LDAP://OU=TestCases, DC=networkautomation,DC=com" |
Specifies the LDAP (Lightweight Directory Access Protocol) path of the Active Directory object whose property to set. Click Select Object to launch a standard Windows dialog box that allows you to select the object (e.g., user, computer, group or contact). Click Select Container to select a specific container or organization unit. |
Property name |
Text |
Yes |
(Empty) |
PROPERTYNAME="mail" |
The Active Directory object's property name. |
Property value |
Text |
Yes |
(Empty) |
PROPERTYVALUE="dli@netauto.com" |
The Active Directory object's property value. |
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: Set Active Directory property "mail" of object "LDAP://mycompany.com/CN=Harry,OU=mycompanyUsers,DC=mycompanyDC=com" to "harry@mycompany.com".
<AMSETADPROPERTY LDAPPATH="LDAP://mycompany.com/CN=Harry, OU=mycompanyUsers,DC=mycompanyDC=com" USERNAME="administrator" PASSWORD="AM2PBmJg27fZts7" PROPERTYNAME="mail" PROPERTYVALUE="harry@mycompany.com" />