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
Azure AD Connect (AADC) is one of the most important components in any Office 365 or Azure related projects. It is strongly recommended to always upgrade to the latest version of Azure AD Connect.
Azure AD Connect (AADC) is one of the most important components in Azure / office 365 projects. Sometimes when we troubleshoot the errors in AADC it’s not so easy to go through all of them. It’s easier to export it all for quick reference and faster review. Here is a set of commands we need […]
Microsoft distributes Office 2016 to consumers and Office 365 users using Click-To-Run, a streaming and virtualization technology that’s based on App-V. If we need to control customise the Office installation process let’s see what steps should be done (In this case we need to distribute Office from an intranet location):