-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdd-O365Mailbox.ps1
45 lines (42 loc) · 2.53 KB
/
Add-O365Mailbox.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Function Add-O365MailboxAccess {
<#
.SYNOPSIS
Adds delegated access to an Office365 Mailbox.
.DESCRIPTION
This command allows you to grant any user(s) access to any mailbox(s). You can specify whether you want to grant full access or send as access.
.EXAMPLE
Add-O365MailboxAccess -ToMailboxes [email protected] -ForEmployeeIds 001,002,003,004 -AccessRights SendAs,FullAccess
#>
[cmdletbinding()]
Param (
[Parameter()]$ToMailboxes,
[Parameter()]$ForEmployeeIDs,
[ValidateSet('SendAs','FullAccess')]
[Parameter()]$AccessRights
)
Foreach ($Mailbox in $ToMailboxes) {
Foreach ($User in $ForEmployeeIDs) {
$UserADInfo = Get-Aduser -Identity $User | Select *
if ($AccessRights.Count -le 1) {
if ($AccessRights -eq 'SendAs') {
Add-RecipientPermission -Identity $Mailbox -AccessRights SendAs -Trustee $user -Confirm:$False -WarningAction SilentlyContinue | Out-Null
Write-Host "Added SendAs permission to $Mailbox for $($UserADInfo.Name), $user" -ForegroundColor 'Green'
} Elseif ($AccessRights -eq 'FullAccess') {
Add-MailboxPermission -Identity $Mailbox -AccessRights $AccessRights -User $User -WarningAction SilentlyContinue | Out-Null
Write-Host "Added FullAccess permission to $Mailbox for $($UserADInfo.Name), $user" -ForegroundColor 'Green'
} Else {Write-Host "Verify you entered information properly." -ForegroundColor DarkRed}
} Else {
#AddsSendAs
Try {
Add-RecipientPermission -Identity $Mailbox -AccessRights SendAs -Trustee $user -Confirm:$False -ErrorAction Stop -WarningAction SilentlyContinue | Out-Null
} Catch {Write-Host "Verify that the information you entered is correct." -ForegroundColor DarkRed}
Write-Host "Added SendAs permission to $Mailbox for $($UserADInfo.Name), $user" -ForegroundColor 'Green'
#AddsFullAccess
Try {
Add-Mailboxpermission -Identity $Mailbox -AccessRights FullAccess -User $User -ErrorAction Stop -WarningAction SilentlyContinue | Out-Null
} Catch {Write-Host "Verify that the information you entered is correct." -ForegroundColor DarkRed}
Write-Host "Added FullAccess permission to $Mailbox for $($UserADInfo.Name), $user" -ForegroundColor 'Green'
}
}
}
}