windows_wiki:powershell_office_365

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
windows_wiki:powershell_office_365 [2015/03/09 23:44]
billdozor
windows_wiki:powershell_office_365 [2019/05/25 23:50] (current)
Line 119: Line 119:
 '''Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true''' '''Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true'''
  
 +==== Get List of Mailboxes Sorted by Size ====
 +
 +''Get-Mailbox | Get-MailboxStatistics | Sort totalitemsize -desc | ft displayname, totalitemsize, itemcount''
 +
 +Or to export to CSV:
 +
 +''Get-Mailbox | Get-MailboxStatistics | Sort totalitemsize -desc | select-object displayname, totalitemsize, itemcount | Export-Csv -notype "C:\temp\UserMailboxSize.csv"''
  • windows_wiki/powershell_office_365.1425959055.txt.gz
  • Last modified: 2019/05/25 23:50
  • (external edit)