Active Directory - Move object

Declaration

AMACTIVEDIRECTORY ACTIVITY="move_object" 
AUTHTYPE="text (options)" 
USERNAME="text" 
LDAPPATHOBJECT="text" 
LDAPPATHPARENT="text" 
PASSWORD="text (encrypted)" />

Description: Moves the specified Active Directory object to the selected parent container.

IMPORTANT: Active Directory activities require a basic understanding of Active Directory and related components (e.g., Domain Controllers, Trust Relationships, Forests, LDAPs, etc.). Also, to ensure that these activities function appropriately, the target system must be part of a domain.

Practical Usage

Conceptually used to move Active Directory users from one Organizational Unit to another, such as when users transfers from one department or position to another.

Object Parameters

Property

Type

Required

Default

Markup

Description

Path

Text

Yes

(Empty)

LDAPPATHOBJECT=

"LDAP://OU=TestCases,DC=netauto,DC=com"

Specifies the LDAP (Lightweight Directory Access Protocol) path of the Active Directory object to move. Click Select Object to launch a standard Windows Active Directory dialog box that allows you to select the object (e.g., user, computer, group or contact).Click Select Container to select any container or organization unit.

Move to this container

Text

Yes

(Empty)

LDAPPATHPARENT=

"LDAP://DC=networkautomation,DC=com"

The LDAP path in which to move the object to. Click Select Container to select the parent container from the domain.

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:

  • Default - Use default authentication type.

  • None - Equates to zero, which means to use basic authentication (simple bind) in the LDAP provider.

  • Secure - Requests secure authentication. When this flag is set, the WinNT provider uses NTLM to authenticate the client.

  • Encryption - Attaches a cryptographic signature to the message that both identifies the sender and ensures that the message has not been modified in transit.

  • SecureSocketLayer - Attaches a cryptographic signature to the message that both identifies the sender and ensures that the message has not been modified in transit.

  • ReadonlyServer - For a WinNT provider, ADSI tries to connect to a domain controller. For Active Directory Domain Services, this flag indicates that a writable server is not required for a serverless binding.

  • Anonymous - No authentication is performed.

  • FastBind - Specifies that ADSI will not attempt to query the Active Directory Domain Services objectClass property. Therefore, only the base interfaces that are supported by all ADSI objects will be exposed. Other interfaces that the object supports will not be available.

  • Signing - Verifies data integrity to ensure that the data received is the same as the data sent. The Secure flag must also be set to use signing.

  • Sealing - Encrypts data using Kerberos. The Secure flag must also be set to use sealing.

  • Delegation - Enables Active Directory Services Interface (ADSI) to delegate the user's security context, which is necessary for moving objects across domains.

  • ServerBind - If your ADsPath includes a server name, specify this flag when using the LDAP provider. Do not use this flag for paths that include a domain name or for serverless paths. Specifying a server name without also specifying this flag results in unnecessary network traffic.

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: Move Active Directory object at "LDAP://servername.com" to "LDAP://servername.com/CN=Harry,OU=companyUsers,DC=servername,DC=com".

AMMOVEADOBJECT LDAPPATHPARENT="LDAP://servername.com" 
LDAPPATHOBJECT="LDAP://servername.com/CN=Harry,
OU=companyUsers,DC=servername,DC=com" 
USERNAME="administrator" 
PASSWORD="AM2PBmJg27fZts7GYeDb99x20wZ6IMd3xXbaME" />