|
Active Directory - Create object |
Declaration
<AMACTIVEDIRECTORY ACTIVITY="create_object" AUTHTYPE="text (options)" USERNAME="text" PASSWORD="text (encrypted)" LDAPPATH="text" ADOBJECT="text (options)" OBJECTNAME="text" />
Description
Creates an Active Directory object of the specified type and name.
IMPORTANT: Automate's Active
Directory activities require a basic understanding of Active Directory
and related components (for example, 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
Commonly used to create a new Active Directory Organizational Unit, a container into which one can place objects such as users, groups, computers or other organizational units.
Parameters
Object
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. |
Type | Text (Options) | Yes | Organizational Unit | ADOBJECT="Computer" | The
Active Directory object type to create. The available options
are:
|
Name | Text | Yes | (Empty) | OBJECTNAME="serverprinter" | The name of the Active Directory object to create. |
Credentials
Property | Type | Required | Default | Markup | Description |
---|---|---|---|---|---|
Authentication type | Text (options) | No | Default |
|
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. Manually enter a password or click the Credentials key icon to select from the list of credential variables available to you that may correspond to this activity. Leave the Username and Password parameters blank in order to use the logon user's credentials. |
Example
NOTE:
- The sample AML code below can be copied and pasted directly into the Steps Panel of the Task Builder.
- Parameters containing user credentials, files, file paths, and/or other information specific to the task must be customized before the sample code can run successfully.
Description
Create an Active Directory COMPUTER object with the name of "serverprinter" (full path is "LDAP://servername.com").
Copy
<AMACTIVEDIRECTORY ACTIVITY="create_object" AUTHTYPE="Secure" USERNAME="Dave" PASSWORD="AM517W5DreKRuQEES4dWZSKX473lVvQmVTDVqud71GFOUU=aME" LDAPPATH="LDAP://servername.com" OBJECTNAME="serverprinter" />