forked from timmcmic/DLConversionV2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set-OnPremDLPermissions.ps1
143 lines (110 loc) · 5.3 KB
/
set-OnPremDLPermissions.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<#
.SYNOPSIS
This function sets the multi valued attributes of the DL
.DESCRIPTION
This function sets the multi valued attributes of the DL.
For each of use - I've combined these into a single function instead of splitting them out.
.PARAMETER allSendAs
All of the send as permissions for other objects in Office 365.
.PARAMETER allFullMailboxAccess
All of the full mailbox access permissions for other objects in Office 365.
.OUTPUTS
None
.EXAMPLE
set-Office365DLPermissions -allSendAs SENDAS -allFullMailboxAccess FULLMAILBOXACCESS
#>
Function set-OnPremDLPermissions
{
[cmdletbinding()]
Param
(
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[array]$allOnPremSendAs=$NULL,
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[array]$allOnPremFullMailboxAccess=$NULL,
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[array]$allOnPremFolderPermissions=$NULL,
[Parameter(Mandatory = $TRUE)]
[string]$groupSMTPAddress
)
#Declare function variables.
#Start processing the recipient permissions.
Out-LogFile -string "********************************************************************************"
Out-LogFile -string "START set-OnPremDLPermissions"
Out-LogFile -string "********************************************************************************"
#Determine if send as is populated and if so reset permissiosn.
if ($allOnPremSendAs -ne $NULL)
{
out-logfile -string "There are objects that have send as rights - processing."
foreach ($permission in $allOnPremSendAs)
{
out-logfile -string ("Processing permission identity = "+$permission.identity)
out-logfile -string ("Processing permission trustee = "+$permission.user)
try {
add-adPermission -identity $permission.identity -user $permission.user -AccessRights ExtendedRight -ExtendedRights "Send As"
}
catch {
out-logfile -string "Unable to add the recipient permission send as on premises."
out-logfile -string $_ -isError:$TRUE
}
}
}
else
{
out-logfile -string "There are no send as permissions to process."
}
$global:unDoStatus=$global:unDoStatus+1
out-Logfile -string ("Global UNDO Status = "+$global:unDoStatus.tostring())
if ($allOnPremFullMailboxAccess -ne $NULL)
{
out-logfile -string "There are objects that have full mailbox access rights - processing."
try {
foreach ($permission in $allOnPremFullMailboxAccess)
{
out-logfile -string ("Processing permission identity = "+$permission.identity)
out-logfile -string ("Processing permission trustee = "+$permission.user)
out-logfile -string ("Processing permission access rights = "+$permission.AccessRights)
add-MailboxPermission -identity $permission.identity -user $permission.user -accessRights $permission.accessRights -confirm:$FALSE
}
}
catch {
out-logFile -string "Unable to add the full mailbox access permission in Office 365."
out-logfile -string $_ -isError:$TRUE
}
}
else
{
out-logfile -string "There are no full mailbox access permissions to process."
}
$global:unDoStatus=$global:unDoStatus+1
out-Logfile -string ("Global UNDO Status = "+$global:unDoStatus.tostring())
if ($allOnPremFolderPermissions -ne $NULL)
{
out-logfile -string "Processing mailbox folder permissions in Office 365."
foreach ($permission in $allOnPremFolderPermissions)
{
try {
out-logfile -string ("Processing permission identity = "+$permission.identity)
out-logfile -string ("Processing permission trustee = "+$permission.user)
out-logfile -string ("Processing permissions folder = "+$permission.folderName)
out-logfile -string ("Processing permission access rights = "+$permission.AccessRights)
add-MailboxFolderPermission -identity $permission.identity -user $permission.user -accessRights $permission.AccessRights -confirm:$FALSE
}
catch {
out-logFile -string "Unable to add the full mailbox access permission in Office 365."
out-logfile -string $_ -isError:$TRUE
}
}
}
else
{
out-logfile -string "There are no full mailbox access permissions to process."
}
$global:unDoStatus=$global:unDoStatus+1
out-Logfile -string ("Global UNDO Status = "+$global:unDoStatus.tostring())
Out-LogFile -string "END set-OnPremDLPermissions"
Out-LogFile -string "********************************************************************************"
}