Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tools4everbv/helloid-task-sa-target-exchangeonpremises-sharedmailboxcreate

Exchange On Premises - Shared Mailbox create
https://github.com/tools4everbv/helloid-task-sa-target-exchangeonpremises-sharedmailboxcreate

delegated-form exchange-on-premises powershell product service-automation task

Last synced: about 1 month ago
JSON representation

Exchange On Premises - Shared Mailbox create

Awesome Lists containing this project

README

        

# HelloID-Task-SA-Target-ExchangeOnPremises-SharedMailboxCreate

## Prerequisites
Before using this snippet, verify you've met with the following requirements:

- [ ] User defined variables: `$ExchangeAdminUsername`, `$ExchangeAdminPassword` and `$ExchangeConnectionUri` created in your HelloID portal. [See also Custom Variables](https://docs.helloid.com/en/variables/custom-variables.html)

## Description

This code snippet executes the following tasks:

1. Define a hash table `$formObject`. The keys of the hash table represent the properties of the `` cmdlet, 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.

```json
{
"CommonName": "SharedMailbox01",
"Alias": "SharedMailbox01",
"UserPrincipalName": "[email protected]",
"OrganizationalUnit": "connectors.com/Users",
"Password": "Xqdc3z#412ssg!h!dk3"
}
```

> :exclamation: 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.
> More about the `New-Mailbox` Cmdlet: [See the Microsoft Docs page](https://learn.microsoft.com/en-us/powershell/module/exchange/new-mailbox?view=exchange-ps)

2. Constructs a PowerShell credential object from the supplied administrative username and password

3. Connects with the credentials to the Exchange on premises environment by means of the `New-PSSession` cmdlet

4. Calls the `New-Mailbox` cmdlet with the switch `-Shared` to create the new SharedMailbox

5. Disconnects from the Exchange session by means of the `Remove-PsSession` cmdlet