Create Address List activity
The Create Address List activity creates a new address list that acts as an alias for emailing all users in the group.
This alias cannot be used to manage user permissions. This activity implements the Microsoft Exchange New-AddressList command.
Input variables
| Variable | Description |
|---|---|
| hostname | The hostname of the Exchange server with which the activity interacts. Do not enter an IP address in this variable. |
| domain | The name of the Exchange server's assigned domain. |
| name | Name of the new address list to create. |
| parameters | Optional parameters to pass to the Exchange server written in JavaScript
Object Notation (JSON). Exchange activities cannot pass parameters that reference
an object, such as a PSCredential object. Plain text is automatically converted to
SecureString objects for parameters that require that data type. Attempting to
save an activity that specifies duplicate parameters, including parameters from
activity variables, or incorrectly formatted JSON causes a warning message to
appear. Note: When passing a switch parameter, such as ForceUpgrade, you must
use the format "parameter":"true". |
Output variables
| Variable | Description |
|---|---|
| result | Either success or failure. |
| error | Error message if the operation fails. |
| output | Raw XML payload from the Exchange server. This data includes all Exchange attributes. |
Conditions
| Condition | Description |
|---|---|
| Success | The activity succeeded in creating a new address list. |
| Failure | The activity failed to create a new address list. |