Posts Tagged: exchange 2010
-
Nov 22, 2010
No CommentsHow to exclude Exchange 2010 Mailbox Database from provisioning.
Microsoft Exchange 2010 offers a feature to automatically select the database in which new or moved mailbox will be stored. This is a great feature and it does it’s job quite good too. With the release of Exchange 2010 Service Pack 1 we are now able to specify the database we want to create online...
-
Oct 27, 2010
No CommentsSend email with Exchange mailbox statistics in CSV from Powershell
Would you like to receive weekly email from your Exchange server with mailbox statistics attached in a CSV file? Script below will generate CSV file with the following format: Name | ItemCount | Size | DeletedItemCount | DeletedItemsSize | MailboxDatabase and email it to address specified. ReportMailboxSizes.ps1: $EmailFrom = "from_address" $EmailTo = "to_address" $EmailSubject =...
-
Sep 01, 2010
No CommentsExchange 2010 – Forward Email to External Address
To forward emails from your Exchange 2010 domain to the external email address, first you have to create mail enabled contact. Open Exchange Management Console and navigate to Recipient Configuration -> Mail Contact. Right click in the middle pane and create New Mail Contact… Select New Contact to create new contact or Existing Contact to...
-
Aug 13, 2010
No CommentsMapi session exceeded the maximum of 500 objects of type “objtFolder”.
Outlook client doesn’t update folders automatically. On the status bar instead of “All folders are up to date” message “This folder was last updated on …” is displayed. Your Microsoft Exchange 2010 server logs the following error: Event ID: 9646 Type: Error Source: MSExchangeIS Description: Mapi session "/o=First Organization/ou=Administrative Group/cn=Recipients/cn=user" exceeded the maximum of 500...
-
Jul 31, 2010
No CommentsHow to retrieve list of mailboxes sorted by size in Exchange 2010 using PowerShell
You have probably noticed that you can’t view and sort mailboxes by their size in Exchange 2010 using Exchange Management Console. To do this you need to use Exchange Management Shell. Run the following command to retrieve list of mailboxes sorted by size on a specific server: Get-MailboxStatistics -Server <Server Name> | Sort-Object -Property TotalItemSize...
