forked from timmcmic/DLConversionV2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start-collectOffice365FullMailboxAccess.ps1
320 lines (241 loc) · 11.9 KB
/
start-collectOffice365FullMailboxAccess.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
function start-collectOffice365FullMailboxAccess
{
<#
.SYNOPSIS
This function exports all of the mailbox folders from the on premises environment with custome permissions.
.DESCRIPTION
Trigger function.
.PARAMETER logFolder
*REQUIRED*
The location where logging for the migration should occur including all XML outputs for backups.
.PARAMETER exchangeServer
*REQUIRED IF HYBRID MAIL FLOW ENALBED*
This is the on-premises Exchange server that is required for enabling hybrid mail flow if the option is specified.
If using a load balanced namespace - basic authentication on powershell must be enabled on all powersell virtual directories.
If using a single server (direct connection) then kerberos authentication may be utilized.
.PARAMETER exchangeCredential
*REQUIRED IF HYBRID MAIL FLOW ENABLED*
This is the credential utilized to establish remote powershell sessions to Exchange on-premises.
This acccount requires Exchange Organization Management rights in order to enable hybrid mail flow.
.PARAMETER exchangeAuthenticationMethod
*OPTIONAL*
This allows the administrator to specify either Kerberos or Basic authentication for on premises Exchange Powershell.
Basic is the assumed default and requires basic authentication be enabled on the powershell virtual directory of the specified exchange server.
.OUTPUTS
Logs all activities and backs up all original data to the log folder directory.
Moves the distribution group from on premieses source of authority to office 365 source of authority.
.EXAMPLE
Start-collectoffice365FolderPermissions -exchangeServer Server -exchangeCredential $credential
#>
#Portions of the audit code adapted from Tony Redmon's project.
#https://github.com/12Knocksinna/Office365itpros/blob/master/ReportPermissionsFolderLevel.PS1
#Don't tell him - he can get grumpy at times.
[cmdletbinding()]
Param
(
[Parameter(Mandatory = $true)]
[string]$logFolderPath,
[Parameter(Mandatory = $false)]
[pscredential]$exchangeOnlineCredential=$NULL,
[Parameter(Mandatory = $false)]
[string]$exchangeOnlineCertificateThumbPrint="",
[Parameter(Mandatory = $false)]
[string]$exchangeOnlineOrganizationName="",
[Parameter(Mandatory = $false)]
[ValidateSet("O365Default","O365GermanyCloud","O365China","O365USGovGCCHigh","O365USGovDoD")]
[string]$exchangeOnlineEnvironmentName="O365Default",
[Parameter(Mandatory = $false)]
[string]$exchangeOnlineAppID="",
[Parameter(Mandatory = $false)]
[boolean]$retryCollection=$FALSE,
[Parameter(Mandatory = $false)]
$bringMyOwnMailboxes=$NULL
)
#Delare global variables.
$global:logFile=$NULL #This is the global variable for the calculated log file name
[string]$global:staticFolderName="\AuditData\"
#Declare function variables.
#Declare function variables.
$auditMailboxes=$NULL
[array]$auditFullMailboxAccess=@()
[int]$forCounter=0
[int]$mailboxCounter=0
[int]$totalMailboxes=0
[string]$office365RecipientFullMailboxAccess="office365RecipientFullMailboxAccess.xml"
[string]$office365MailboxList="office365MailboxList.xml"
[string]$office365RecipientProcessed="office365RecipientProcessed.xml"
new-LogFile -groupSMTPAddress Office365FullMailboxAccessPermissions -logFolderPath $logFolderPath
#Validate that only one method of engaging exchange online was specified.
Out-LogFile -string "Validating Exchange Online Credentials."
if (($exchangeOnlineCredential -ne $NULL) -and ($exchangeOnlineCertificateThumbPrint -ne ""))
{
Out-LogFile -string "ERROR: Only one method of cloud authentication can be specified. Use either cloud credentials or cloud certificate thumbprint." -isError:$TRUE
}
elseif (($exchangeOnlineCredential -eq $NULL) -and ($exchangeOnlineCertificateThumbPrint -eq ""))
{
out-logfile -string "ERROR: One permissions method to connect to Exchange Online must be specified." -isError:$TRUE
}
else
{
Out-LogFile -string "Only one method of Exchange Online authentication specified."
}
#Validate that all information for the certificate connection has been provieed.
if (($exchangeOnlineCertificateThumbPrint -ne "") -and ($exchangeOnlineOrganizationName -eq "") -and ($exchangeOnlineAppID -eq ""))
{
out-logfile -string "The exchange organiztion name and application ID are required when using certificate thumbprint authentication to Exchange Online." -isError:$TRUE
}
elseif (($exchangeOnlineCertificateThumbPrint -ne "") -and ($exchangeOnlineOrganizationName -ne "") -and ($exchangeOnlineAppID -eq ""))
{
out-logfile -string "The exchange application ID is required when using certificate thumbprint authentication." -isError:$TRUE
}
elseif (($exchangeOnlineCertificateThumbPrint -ne "") -and ($exchangeOnlineOrganizationName -eq "") -and ($exchangeOnlineAppID -ne ""))
{
out-logfile -string "The exchange organization name is required when using certificate thumbprint authentication." -isError:$TRUE
}
else
{
out-logfile -string "All components necessary for Exchange certificate thumbprint authentication were specified."
}
if (($bringMyOwnMailboxes -ne $NULL )-and ($retryCollection -eq $TRUE))
{
out-logfile -string "You cannot bring your own mailboxes when you are retrying the collection."
out-logfile -string "If mailboxes were previously provided - rerun command with just retry collection." -iserror:$TRUE -isArchive:$TRUE
}
#Start the connection to Exchange Online.
if ($exchangeOnlineCredential -ne $NULL)
{
#User specified non-certifate authentication credentials.
try {
New-ExchangeOnlinePowershellSession -exchangeOnlineCredentials $exchangeOnlineCredential -exchangeOnlineEnvironmentName $exchangeOnlineEnvironmentName
}
catch {
out-logfile -string "Unable to create the exchange online connection using credentials."
out-logfile -string $_ -isError:$TRUE
}
}
elseif ($exchangeOnlineCertificateThumbPrint -ne "")
{
#User specified thumbprint authentication.
try {
new-ExchangeOnlinePowershellSession -exchangeOnlineCertificateThumbPrint $exchangeOnlineCertificateThumbPrint -exchangeOnlineAppId $exchangeOnlineAppID -exchangeOnlineOrganizationName $exchangeOnlineOrganizationName -exchangeOnlineEnvironmentName $exchangeOnlineEnvironmentName
}
catch {
out-logfile -string "Unable to create the exchange online connection using certificate."
out-logfile -string $_ -isError:$TRUE
}
}
#Define the log file path one time.
$logFolderPath = $logFolderPath+$global:staticFolderName
try
{
if ($retryCollection -eq $FALSE)
{
if ($bringMyOwnMailboxes -eq $NULL)
{
out-logFile -string "Obtaining all on premises mailboxes."
$auditMailboxes = get-exomailbox -resultsize unlimited
#Exporting mailbox operations to csv - the goal here will be to allow retry.
$fileName = $office365MailboxList
$exportFile=Join-path $logFolderPath $fileName
$auditMailboxes | export-clixml -path $exportFile
}
else
{
$auditMailboxes = $bringMyOwnMailboxes
#Exporting mailbox operations to csv - the goal here will be to allow retry.
$fileName = $office365MailboxList
$exportFile=Join-path $logFolderPath $fileName
$auditMailboxes | export-clixml -path $exportFile
}
}
elseif ($retryCollection -eq $TRUE)
{
out-logfile -string "Retry operation - importing the mailboxes from previous export."
try{
$fileName = $office365MailboxList
$importFile=Join-path $logFolderPath $fileName
$auditMailboxes = import-clixml -path $importFile
}
catch{
out-logfile -string "Retry was specified - unable to import the XML file."
out-logfile -string $_ -isError:$TRUE -isAudit:$true
}
out-logfile -string "Import the count of the last mailbox processed."
try {
$fileName = $office365RecipientProcessed
$importFile=Join-path $logFolderPath $fileName
$mailboxCounter=Import-Clixml -path $importFile
#The import represents the last mailbox processed.
#It's permissions were already exported - add 1 to start with the next mailbox in the list.
$mailboxCounter=$mailboxCounter+1
out-logfile -string ("Next recipient to process = "+$mailboxCounter.toString())
}
catch {
out-logfile -string "Unable to read the previous mailbox processed."
out-logfile -string $_ -isError:$TRUE -isAudit:$true
}
out-logfile -string "Importing the previously exported permissions."
try {
$fileName=$office365RecipientFullMailboxAccess
$importFile=Join-path $logFolderPath $fileName
$auditFullMailboxAccess = import-clixml -Path $importFile
}
catch {
out-logfile -string "Unable to import the previously exported permissions." -isError:$TRUE -isAudit:$true
}
}
}
catch
{
out-logFile -string "Unable to get mailboxes."
out-logfile -string $_ -isError:$TRUE
}
#For each mailbox - we will iterate and grab the folders for processing.
$ProgressDelta = 100/($auditMailboxes.count); $PercentComplete = 0; $mailboxNumber = 0
$totalMailboxes=$auditMailboxes.count
#Here we're going to use a for loop based on count.
#This is to support a retry operation.
for ($mailboxCounter ; $mailboxCounter -lt $totalMailboxes ; $mailboxCounter++)
{
#Drop the mailbox into a working variable.
$mailbox = $auditMailboxes[$mailboxCounter]
if ($forCounter -gt 1000)
{
out-logfile -string "Sleeping for 5 seconds - powershell refresh."
start-sleep -seconds 5
$forCounter=0
}
else
{
$forCounter++
}
out-logfile -string ("Processing recipient = "+$mailbox.primarySMTPAddress)
out-logfile -string ("Processing recipient number: "+$mailboxCounter.toString()+" of "+$totalMailboxes.tostring())
$mailboxNumber++
$progressString = "Recipient Name: "+$mailbox.primarySMTPAddress+" Recipient Number: "+$mailboxCounter+" of "+$totalMailboxes
Write-Progress -Activity "Processing recipient" -Status $progressString -PercentComplete $PercentComplete -Id 1
$PercentComplete += $ProgressDelta
try {
if ($forCounter -gt 1000)
{
out-logfile -string "Starting sleep at 1000 operations."
$forCounter=0
}
else
{
$forCounter++
}
$auditFullMailboxAccess+=get-exomailboxPermission -identity $mailbox.identity | Where-Object {$_.user -notlike "NT Authority\Self"}
}
catch {
out-logfile -string "Error obtaining folder statistics."
out-logfile -string $_ -isError:$TRUE
}
$fileName = $office365RecipientFullMailboxAccess
$exportFile=Join-path $logFolderPath $fileName
$auditFullMailboxAccess | Export-Clixml -Path $exportFile
$fileName = $office365RecipientProcessed
$exportFile=Join-path $logFolderPath $fileName
$mailboxCounter | export-clixml -path $exportFile
}
}