Use the below to export mailbox statistics from exchange PowerShell. There are different commands which help you filter and manipulate the exported data. The exported information is always useful during Office 365 migration to assess mailbox sizes and item counts, last login time and required bandwidth. Export Mailbox size and statistics of all users get-mailbox … Continue reading Get-MailboxStatistics to export Mailbox size in Exchange Powershell
Powershell
Create a Shared Mailbox in Exchange 2007
Create shared mailboxes in Exchange 2007 using powershell as the EMC in Exchange 2007 doesnt allow you to create shared mailboxes like the new exchange 2010. You can do this with the help of the new-mailbox cmdlet. Below is an example of creating a shared mailbox called Info and then assigning the info security group … Continue reading Create a Shared Mailbox in Exchange 2007
Manage Exchange 2010 Calendar Permissions Using Powershell
You can add Calendar Permissions Using Powershell for users using the following command: if user2 needs to access user1's calendar Add-MailboxFolderPermission -identity “user1:\calendar” –user “user2” -AccessRights Reviewer the same can be done to give permission to a security group Add-MailboxFolderPermission -identity “user1:\calendar” –user “DomainName\securitygroup” -AccessRights Reviewer Below is the list of access rights and explanation None FolderVisible … Continue reading Manage Exchange 2010 Calendar Permissions Using Powershell