Category: Office 365

Office 365

Just Moved to Office 365. What to do with Multifunction Device?

During Cloud migration projects we ofter get questions similar to this: “OK, we’ve moved to Office 365? Now what? How our Multifunction Device will send emails?” I hope this blog post will help to understand what options are available to address the situation with Multifunction Device and any other devices and applications that should send emails […]

admin 
Exchange Microsoft Cloud Office 365

Office365: What Is The Size Of Users Mailbox?

Get-Mailbox | Get-MailboxStatistics | Select-Object DisplayName, @{name=”TotalItemSize (GB)”;expression={[math]::Round((($_.TotalItemSize.Value.ToString()).Split(“(“)[1].Split(” “)[0].Replace(“,”,””)/1GB),2)}},ItemCount | Sort “TotalItemSize (GB)” -Descending If we need to export the results into CSV file: Get-Mailbox | Get-MailboxStatistics | Select-Object DisplayName, @{name=”TotalItemSize (GB)”;expression={[math]::Round((($_.TotalItemSize.Value.ToString()).Split(“(“)[1].Split(” “)[0].Replace(“,”,””)/1GB),2)}},ItemCount | Sort “TotalItemSize (GB)” -Descending | Export-CSV C:\TMP\Office365-MailboxSize-Report.csv

admin