Question : I want to output a report of my users mailboxes size by OU or attribute using powershell

I want to export to a file, a list of my users by organizational unit containing mailbox statistic items especially total size. There was an answer previously on the site which starts with @(foreach ($user in $user) which just causes my powershell to stop working ie I get >>

Am I missing something
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
@(foreach ($user in $users)
{
$myobj = "" | Select Displayname,mailboxsize,title
$myobj.DisplayName = $user.DisplayName
$myobj.mailboxsize = get-mailbox -id $user.name -resultsize unlimited | Get-MailboxStatistics | select TotalItemSize
$myobj.Title = $user.Title
$objcol += $myobj # add object to array
}) | out-file c:\size.txt -enc ASCII
Open in New Window Select All

Answer : I want to output a report of my users mailboxes size by OU or attribute using powershell

Try this
1:
2:
3:
4:
$ou = comp2
Get-mailbox -OrganizationalUnit $ou -resultsize unlimited | Get-MailboxStatistics | Sort TotalItemSize -Descending | ft DisplayName,
@{label="TotalItemSize(KB)";expression={$_.TotalItemSize.Value.ToKB()}},
ItemCount,lastlogontime,@{l="OU";e={$OU}}
Open in New Window Select All
Random Solutions  
 
programming4us programming4us