Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tools4everbv/helloid-task-sa-target-exchangeonpremises-sharedmailboxgrantfullaccess
Exchange on-premises - Shared mailbox grant full-access permissions
https://github.com/tools4everbv/helloid-task-sa-target-exchangeonpremises-sharedmailboxgrantfullaccess
exchange-on-premises powershell product service-automation task
Last synced: about 2 months ago
JSON representation
Exchange on-premises - Shared mailbox grant full-access permissions
- Host: GitHub
- URL: https://github.com/tools4everbv/helloid-task-sa-target-exchangeonpremises-sharedmailboxgrantfullaccess
- Owner: Tools4everBV
- Created: 2023-08-22T14:44:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-05T10:05:31.000Z (about 1 year ago)
- Last Synced: 2023-10-05T13:29:28.020Z (about 1 year ago)
- Topics: exchange-on-premises, powershell, product, service-automation, task
- Language: PowerShell
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# HelloID-Task-SA-Target-ExchangeOnPremises-SharedMailboxGrantFullAccess
## Prerequisites
Before using this snippet, verify you've met with the following requirements:- [ ] User defined variables: `$ExhangeAdminUsername`, `$ExchangeAdminPassword` and `$ExchangeConnectionUri` created in your HelloID portal. [See also](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 `Add-MailboxPermission` 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
{
"Users": ["JohnDoe", "JaneDoe"],
"MailboxIdentity": "Mailbox"
}
```> :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.
> The **MailboxIdentity** can hold different values [See the Microsoft Docs page](https://learn.microsoft.com/en-us/powershell/module/exchange/add-mailboxpermission?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 `Add-MailboxPermission` cmdlet to Grant users FullAccess to a mailbox
5. Disconnects from the Exchange session by means of the `Remove-PsSession` cmdlet