Get-O365DLMailboxFolderPermissions.ps1
<#
.SYNOPSIS This function evaluates all Office 365 Mailbox Folder permissions for the migrated distriution groups. .DESCRIPTION This function evaluates all Office 365 Mailbox Folder permissions for the migrated distriution groups. .PARAMETER GroupSMTPAddress The mail attribute of the group to search. .PARAMETER collectedData The precollected data to search for the group. .OUTPUTS Returns any mailbox folder permissions for the migrated DL. .EXAMPLE Get-O365DLFullMaiboxAccess -groupSMTPAddress Address #> Function Get-O365DLMailboxFolderPermissions { [cmdletbinding()] Param ( [Parameter(Mandatory = $true)] [string]$groupSMTPAddress, [Parameter(Mandatory = $false)] $collectedData=$NULL ) #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) #Declare function variables. [array]$functionFolderAccess=@() #Start function processing. Out-LogFile -string "********************************************************************************" Out-LogFile -string "BEGIN Get-O365DLMailboxFolderPermissions" Out-LogFile -string "********************************************************************************" #Get the recipient using the exchange online powershell session. if ($collectedData -eq $NULL) { out-logfile -string "No folder permissions were provided for evaluation." } elseif ($collectedData -ne $NULL) { <# out-logfile -string "Filter all entries for objects that have been removed." out-logfile -string ("Pre count: "+$collectedData.count) $collectedData = $collectedData | where {$_.user.userPrincipalName -ne $NULL} out-logfile -string ("Post count: "+$collectedData.count) $functionFolderAccess = $collectedData | where {$_.user.tostring() -eq $groupSMTPAddress} #> #Moving back from the EXO function changes the output of the gathered permissions. #This new code section should address it. #Retaining the original in case it becomes necessary to revert. out-logfile -string "Filter all entries for objects that have been removed." out-logfile -string ("Pre count: "+$collectedData.count) $collectedData = $collectedData | where {$_.user.RecipientPrincipal.primarySMTPAddress -ne $NULL} out-logfile -string ("Post count: "+$collectedData.count) $functionFolderAccess = $collectedData | where {$_.user.RecipientPrincipal.primarySMTPAddress.tostring() -eq $groupSMTPAddress} } write-progress -activity "Processing Recipient" -completed Out-LogFile -string "END Get-O365DLMailboxFolderPermissions" Out-LogFile -string "********************************************************************************" if ($functionFolderAccess.count -gt 0) { return $functionFolderAccess } } |