Tag: 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 
Azure ExpressRoute Microsoft Cloud

What Type of Peering ExpressRoute Supports?

ExpressRoute supports three routing domains for various types of services. Private peering Virtual Networks, including all virtual machines and cloud services Public peering Most of the Azure services with a few exceptions below Power BI Dynamics 365 for Operations (formerly known as Dynamics AX Online) Microsoft peering Office 365* Most of the Dynamics 365 services […]

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