-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathset-Office365DLPermissions.ps1
373 lines (282 loc) · 16 KB
/
set-Office365DLPermissions.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<#
.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.dddd
.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.
.PARAMETER allOnPremSendAs
The array of on prem send as permissions that need to be set in the cloud.
.PARAMETER allFolderPermissions
The folder permissions.
.OUTPUTS
None
.EXAMPLE
set-Office365DLPermissions -allSendAs SENDAS -allFullMailboxAccess FULLMAILBOXACCESS -allOnPremSendAs $onPremSendAs -allFolderPermissions $permissions.
#>
Function set-Office365DLPermissions
{
[cmdletbinding()]
Param
(
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[array]$allSendAs=@(),
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[array]$allOnPremSendAs=@(),
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[array]$allFullMailboxAccess=@(),
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[array]$allFolderPermissions=@(),
[Parameter(Mandatory = $false)]
[string]$originalGroupPrimarySMTPAddress=""
)
out-logfile -string "Output bound parameters..."
#Output all parameters bound or unbound and their associated values.
write-functionParameters -keyArray $MyInvocation.MyCommand.Parameters.Keys -parameterArray $PSBoundParameters -variableArray (Get-Variable -Scope Local -ErrorAction Ignore)
$isTestError="No"
#Declare function variables.
#Start processing the recipient permissions.
Out-LogFile -string "********************************************************************************"
Out-LogFile -string "START set-Office365DLPermissions"
Out-LogFile -string "********************************************************************************"
#Determine if any dir synced groups on premises has send as set. If so reset in service so migrated group continues to work.
if ($allOnPremSendAs.count -gt 0)
{
out-logfile -string "The migrated group has send as rights on premises for groups that are directory synced."
out-logfile -string "Adding the send as right to the cloud for the migrated distribution group."
foreach ($permission in $allOnPremSendAs)
{
$isTestError="No" #Reset error tracking.
$accessRight="SendAs"
out-logfile -string ("Processing permission identity = "+$permission.primarySMTPAddressorUPN)
out-logfile -string ("Processing permission trustee = "+$originalGroupPrimarySMTPAddress)
out-logfile -string ("Processing permission access rights = "+$accessRight)
try {
add-o365RecipientPermission -identity $permission.primarySMTPAddressOrUPN -trustee $originalGroupPrimarySMTPAddress -accessRights $accessRight -confirm:$FALSE -errorAction STOP
}
catch {
out-logfile -string "Unable to add the recipient permission in office 365."
out-logfile -string $_
$errorMessageDetail=$_
$isTestError="Yes"
}
if ($isTestError -eq "Yes")
{
out-logfile -string "Error adding migrated distribution list to send as permission of cloud only group.."
$isErrorObject = new-Object psObject -property @{
permissionIdentity = $permission.primarySMTPAddressorUPN
attribute = "SendAs Permission"
errorMessage = "Migrated DL has send as permissions on directory synced group. Attempt to mirror permission in cloud failed. Manual add required."
errorMessageDetail = $errorMessageDetail
}
out-logfile -string $isErrorObject
$global:office365ReplacePermissionsErrors+=$isErrorObject
}
}
}
else
{
out-logfile -string "There are no send as permissions to process."
}
#Determine if send as is populated and if so reset permissiosn.
if ($allSendAs.count -gt 0)
{
out-logfile -string "There are objects that have send as rights - processing."
foreach ($permission in $allSendAs)
{
$isTestError="No" #Reset error tracking.
out-logfile -string ("Processing permission identity = "+$permission.identity)
out-logfile -string ("Processing permission trustee = "+$originalGroupPrimarySMTPAddress)
out-logfile -string ("Processing permission access rights = "+$permission.AccessRights)
out-logfile -string "Removing original permission to avoid orphaned SID"
out-logfile -string $permission.TrusteeSidString
try {
remove-o365RecipientPermission -identity $permission.identity -trustee $permission.TrusteeSidString -accessRights $permission.accessRights -confirm:$FALSE -errorAction STOP
}
catch {
out-logfile -string "Unable to remove the original Office 365 send as permission."
out-logfile -string $_
$errorMessageDetail=$_
$isTestError="Yes"
}
if ($isTestError -eq "Yes")
{
out-logfile -string "Error removing migrated DL to on premises DL send as on cloud object.."
$isErrorObject = new-Object psObject -property @{
permissionIdentity = $permission.Identity
attribute = "SendAs Permission"
errorMessage = "Unable to add the migrated distribution list with send as permissions to resource. Manual add required."
errorMessageDetail = $errorMessageDetail
}
out-logfile -string $isErrorObject
$global:office365ReplacePermissionsErrors+=$isErrorObject
}
$isTestError = "No"
out-logfile -string "Adding the new send as permissions."
try {
add-o365RecipientPermission -identity $permission.identity -trustee $originalGroupPrimarySMTPAddress -accessRights $permission.accessRights -confirm:$FALSE -errorAction STOP
}
catch {
out-logfile -string "Unable to add the recipient permission in office 365."
out-logfile -string $_
$errorMessageDetail=$_
$isTestError="Yes"
}
if ($isTestError -eq "Yes")
{
out-logfile -string "Error adding migrated DL to on premises DL send as on cloud object.."
$isErrorObject = new-Object psObject -property @{
permissionIdentity = $permission.Identity
attribute = "SendAs Permission"
errorMessage = "Unable to add the migrated distribution list with send as permissions to resource. Manual add required."
errorMessageDetail = $errorMessageDetail
}
out-logfile -string $isErrorObject
$global:office365ReplacePermissionsErrors+=$isErrorObject
}
}
}
else
{
out-logfile -string "There are no send as permissions to process."
}
if ($allFullMailboxAccess.count -gt 0)
{
out-logfile -string "There are objects that have full mailbox access rights - processing."
foreach ($permission in $allFullMailboxAccess)
{
$isTestError="No" #Reset error tracking.
out-logfile -string ("Processing permission identity = "+$permission.identity)
out-logfile -string ("Processing permission trustee = "+$originalGroupPrimarySMTPAddress)
out-logfile -string ("Processing permission access rights = "+$permission.AccessRights)
out-logfile -string "Removing original permission to avoid orphaned sid."
out-logfile -string $permission.UserSid
try {
Remove-o365MailboxPermission -User $permission.UserSid -Identity $permission.identity -AccessRights $permission.accessRights -confirm:$FALSE -errorAction STOP
}
catch {
out-logFile -string "Unable to remove the full mailbox access permission in Office 365."
out-logfile -string $_
$errorMessageDetail=$_
$isTestError="Yes"
}
if ($isTestError -eq "Yes")
{
out-logfile -string "Unable to remove the full mailbox access permission in Office 365."
$isErrorObject = new-Object psObject -property @{
permissionIdentity = $permission.Identity
attribute = "FullMailboxAccess Permission"
errorMessage = "Unable to remove the migrated distribution list with full mailbox access permissions to resource. Manual add required."
errorMessageDetail = $errorMessageDetail
}
out-logfile -string $isErrorObject
$global:office365ReplacePermissionsErrors+=$isErrorObject
}
$isTestError="NO"
out-logfile -string "Attempting to add the full mailbox access right."
try
{
add-o365MailboxPermission -identity $permission.identity -user $originalGroupPrimarySMTPAddress -accessRights $permission.accessRights -confirm:$FALSE -errorAction STOP
}
catch
{
out-logFile -string "Unable to add the full mailbox access permission in Office 365."
out-logfile -string $_
$errorMessageDetail=$_
$isTestError="Yes"
}
if ($isTestError -eq "Yes")
{
out-logfile -string "Unable to add the full mailbox access permission in Office 365."
$isErrorObject = new-Object psObject -property @{
permissionIdentity = $permission.Identity
attribute = "FullMailboxAccess Permission"
errorMessage = "Unable to add the migrated distribution list with full mailbox access permissions to resource. Manual add required."
errorMessageDetail = $errorMessageDetail
}
out-logfile -string $isErrorObject
$global:office365ReplacePermissionsErrors+=$isErrorObject
}
}
}
else
{
out-logfile -string "There are no full mailbox access permissions to process."
}
if ($allFolderPermissions.count -gt 0)
{
out-logfile -string "Removing existing mailbox permission in Office 365 to avoid ambiguity."
foreach ($permission in $allFolderPermissions)
{
$isTestError="No"
try {
out-logfile -string ("Processing permission identity = "+$permission.identity)
#out-logfile -string ("Processing permission trustee = "+$permission.user.userPrincipalName)
out-logfile -string ("Processing permission trustee = "+$originalGroupPrimarySMTPAddress)
#remove-o365MailboxFolderPermission -identity $permission.identity -user $permission.user.userPrincipalName -confirm:$FALSE -errorAction STOP
remove-o365MailboxFolderPermission -identity $permission.identity -user $permission.user.RecipientPrincipal.primarySMTPAddress -confirm:$FALSE -errorAction STOP
}
catch {
out-logFile -string "Unable to remove the existing folder permission in Office 365."
out-logfile -string $_
$errorMessageDetail=$_
$isTestError="Yes"
}
if ($isTestError -eq "Yes")
{
out-logfile -string "Unable to remove the existing folder permission in Office 365."
$isErrorObject = new-Object psObject -property @{
permissionIdentity = $permission.Identity
attribute = "Mailbox Folder Permission"
errorMessage = "Unable to remove the migrated distribution list with mailbox folder permissions to resource. Manual add required."
errorMessageDetail = $errorMessageDetail
}
out-logfile -string $isErrorObject
$global:office365ReplacePermissionsErrors+=$isErrorObject
}
}
foreach ($permission in $allFolderPermissions)
{
$isTestError="No"
try {
out-logfile -string ("Processing permission identity = "+$permission.identity)
out-logfile -string ("Processing permission trustee = "+$originalGroupPrimarySMTPAddress)
out-logfile -string ("Processing permission access rights = "+$permission.AccessRights)
out-logfile -string ("Processing permission sharing flags = "+$permission.sharingPermissionFlags)
#add-o365MailboxFolderPermission -identity $permission.identity -user $permission.user.userPrincipalName -accessRights $permission.AccessRights -sharingPermissionFlags $permission.sharingPermissionFlags -confirm:$FALSE -errorAction STOP
add-o365MailboxFolderPermission -identity $permission.identity -user $originalGroupPrimarySMTPAddress -accessRights $permission.AccessRights -sharingPermissionFlags $permission.sharingPermissionFlags -confirm:$FALSE -errorAction STOP
}
catch {
out-logFile -string "Unable to add the folder access permission in Office 365."
out-logfile -string $_
$errorMessageDetail=$_
$isTestError="Yes"
}
if ($isTestError -eq "Yes")
{
out-logfile -string "Unable to add the folder access permission in Office 365."
$isErrorObject = new-Object psObject -property @{
permissionIdentity = $permission.Identity
attribute = "Mailbox Folder Permission"
errorMessage = "Unable to add the migrated distribution list with mailbox folder permissions to resource. Manual add required."
errorMessageDetail = $errorMessageDetail
}
out-logfile -string $isErrorObject
$global:office365ReplacePermissionsErrors+=$isErrorObject
}
}
}
else
{
out-logfile -string "There are no full mailbox access permissions to process."
}
Out-LogFile -string "END set-Office365DLPermissions"
Out-LogFile -string "********************************************************************************"
}