1:
select-object MailboxDisplayName, Size, StoreName | where-object {($_.Size -gt 51200) -and ($_.StoreName -match $dir -and $_.StoreName -NotMatch "Unlimited")}
1: 2: 3: 4: 5: 6: 7: 8: 9: 10:
Select-Object MailboxDisplayName, Size, StoreName | % { if ($_.Size -gt 51200){ foreach ($item in $dir){ if ($_.StoreName -match $item -and $_.StoreName -notmatch "unlimited"){ #Do stuff #with mailbox } } } }