Exchange 2010

Exchange 2010 – Get Mailbox Database Mount status

Do you want to verify / check / see if you Mailbox Database is mounted or not? Just do a check with powershell! Open your Exchange Management Shell and use a combination of Get-MailboxDatabase with the -status option and you find the Mount-status (True/False) in Mounted attribute. Put that all together in one command, you probably want something like : Get-MailboxDatabase …

Read More »

Exchange 2010 – Get available free space in mailbox database

The Exchange mailbox database is always growing and when people say they cleanup you don’t see any changes in the mailbox database size (even not after the x days of the deleted item retention settings). You can see how much free space or white space there is in you mailbox database with a simple powershell command. Open your Exchange Management Shell and …

Read More »

Exchange 2010 – Export all SMTP email addresses to file

This Powershell script is very helpful if you want to have all email addresses in the Exchange organization. Save the following script to a .ps1 file and execute from Exchange Powershell: cls write-host "`nSMTP Address export to file `n`n`n" write-host "Where do you want to store the export-file? (c:\smtpexport.csv)`n`n" $location = read-host "enter path/filename" Get-Mailbox -ResultSize Unlimited | Select-Object DisplayName,ServerName,PrimarySmtpAddress,@{Name=“EmailAddresses”;Expression={$_.EmailAddresses …

Read More »

Exchange 2010 and Microsoft Entourage 2008, make it work!

When you’re upgrading to Exchange 2010 you shouldn’t forget to check the mac users. Some of them are using Apple mail, Microsoft Entourage 2008 or Microsoft Outlook 2011. But when it comes to Entourage you have some requirements you need to meet before Exchange 2010 is implemented! Go to http://www.microsoft.com/mac/downloads Check to see what the latest updates are for Office 2008 and …

Read More »

Exchange 2010 – Mailbox Move Request Error property expression isn’t valid

Performing the actual migration is often a moment to cross your fingers … and of course you will receive some errors when you start moving the first mailboxes. Error: Property Expression isn’t valid Luckely, this one can pretty easy be fixed. Solution: Follow the following steps: Start the Exchange Management Console Go to Recipient Configuration, Mailbox and find the affected …

Read More »

Exchange 2010 – Mailbox Move Request Error Insuff_Access_Rights

Performing the actual migration is often a moment to cross your fingers … and of course you will receive some errors when you start moving the first mailboxes. Error: Insuff_Access_rights Luckely, this one can pretty easy be fixed. Solution: Follow the following steps: Open your Active Directory Users and Computers MMC snapin. Go to the View menu and activate Advanced Features …

Read More »