Before using this snippet, verify you've met with the following requirements:
-
The powershell EXO v3 module must be installed on the server running the Agent. See Exchange-online-powershell-v2 for instructions
-
User defined variables:
ExchangeOnlineAdminUsername
and$ExchangeOnlineAdminPassword
created in your HelloID portal. See also Custom Variables
This code snippet executes the following tasks:
- Define a hash table
$formObject
. The keys of the hash table represent the properties of the room mailbox to be created, while the values represent the values entered in the form.
To view an example of the form output, please refer to the JSON code pasted below.
{
"MailboxIdentity": "MySharedMailbox",
"UsersToAdd": [
{
"UserId": "84805b08-bc39-4fec-a79d-a4a6498dc7bz",
"DisplayName": "JohnDoe"
}
]
}
❗ It is important to note that the names of your form fields might differ. Ensure that the
$formObject
hashtable is appropriately adjusted to match your form fields. See the Microsoft Docs page
-
Constructs a powershell credential object from the supplied administrative username and password
-
Connects with the credentials to the Exchange online environment by means of the
Connect-ExchangeOnline
cmdlet -
Calls the
Add-MailboxPermission
cmdlet to grant memberships. -
Disconnects from the Exchange environment by means of the
Disconnect-ExchangeOnline
cmdlet