functions/other/Get-EXRAllMailFolders.ps1
function Get-EXRAllMailFolders { [CmdletBinding()] param ( [Parameter(Position = 0, Mandatory = $false)] [string] $MailboxName, [Parameter(Position = 1, Mandatory = $false)] [psobject] $AccessToken, [Parameter(Position = 2, Mandatory = $false)] [PSCustomObject] $PropList, [Parameter(Position = 3, Mandatory = $false)] [switch] $ReturnEntryId ) Begin { if($AccessToken -eq $null) { $AccessToken = Get-ProfiledToken -MailboxName $MailboxName if($AccessToken -eq $null){ $AccessToken = Get-EXRAccessToken -MailboxName $MailboxName } } if([String]::IsNullOrEmpty($MailboxName)){ $MailboxName = $AccessToken.mailbox } $HttpClient = Get-HTTPClient -MailboxName $MailboxName $EndPoint = Get-EndPoint -AccessToken $AccessToken -Segment "users" $RequestURL = $EndPoint + "('$MailboxName')/MailFolders/msgfolderroot/childfolders?`$Top=1000" If($ReturnEntryId.IsPresent){ $PropList = Get-EXRKnownProperty -PropList $PropList -PropertyName "PR_ENTRYID" } if ($PropList -ne $null) { $Props = Get-EXRExtendedPropList -PropertyList $PropList -AccessToken $AccessToken $RequestURL += "`&`$expand=SingleValueExtendedProperties(`$filter=" + $Props + ")" #Write-Host $RequestURL } $FldIndex = New-Object Collections.Hashtable ([StringComparer]::CurrentCulture) $BatchItems = @() do { $JSONOutput = Invoke-RestGet -RequestURL $RequestURL -HttpClient $HttpClient -AccessToken $AccessToken -MailboxName $MailboxName -TrackStatus $true foreach ($Folder in $JSONOutput.Value) { $Folder | Add-Member -NotePropertyName FolderPath -NotePropertyValue ("\\" + $Folder.DisplayName) $folderId = $Folder.Id.ToString() Add-Member -InputObject $Folder -NotePropertyName FolderRestURI -NotePropertyValue ($EndPoint + "('$MailboxName')/MailFolders('$folderId')") Expand-ExtendedProperties -Item $Folder $FldIndex.Add($Folder.Id,$Folder.FolderPath) Write-Output $Folder if ($Folder.ChildFolderCount -gt 0) { $BatchItems += $Folder if($BatchItems.Count -eq 20){ Get-EXRAllChildFoldersBatch -BatchItems $BatchItems -MailboxName $MailboxName -AccessToken $AccessToken -PropList $PropList -FldIndex $FldIndex $BatchItems = @() } } } $RequestURL = $JSONOutput.'@odata.nextLink' } while (![String]::IsNullOrEmpty($RequestURL)) if($BatchItems.Count -gt 0){ Get-EXRAllChildFoldersBatch -BatchItems $BatchItems -MailboxName $MailboxName -AccessToken $AccessToken -PropList $PropList -FldIndex $FldIndex } } } |