Skip to content

Commit

Permalink
Merge pull request #2 from 2wheelsdown/patch-1
Browse files Browse the repository at this point in the history
Small tweak
  • Loading branch information
Apoc70 committed Jun 13, 2019
2 parents 8f62f42 + fb59ccb commit 84988df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Get-MailboxPermissionReport.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ $MailboxCount = ($Mailboxes | Measure-Object).Count
$count = 1

ForEach ($Mailbox in $Mailboxes) {
$Alias = '' + $Mailbox.Name
$Alias = '' + $Mailbox.Alias #Use Alias property instead of name to ensure 'uniqueness' passed on to Get-MailboxFolderStatistics
$DisplayName = ('{0} ({1})' -f $Mailbox.DisplayName, $Mailbox.Name)

$activity = ('Working... [{0}/{1}]' -f $count, $mailboxCount)
Expand Down

0 comments on commit 84988df

Please sign in to comment.