Tag Archives: Exchange 2010

Export list of all Exchange email addresses and aliases

Issue: You need to get a list of all the email addresses (aliases) in your Exchange environment. Method 1: Export list of all email addresses to a .CSV file using Exchange Management Shell (EMS): Get-Mailbox -ResultSize Unlimited -OrganizationalUnit "OU=Phoenix Users,OU=Phoenix,DC=CONTOSO,DC=COM" |Select-Object DisplayName,PrimarySmtpAddress, @{Name=“EmailAddresses”;Expression={$_.EmailAddresses |Where-Object {$_.PrefixString -ceq “smtp”} | ForEach-Object {$_.SmtpAddress}}} | Export-CSV Read more [...]

How to find and move the Exchange Arbitration Mailboxes

The Exchange System (Arbitration) Mailboxes, like 'Discovery Search' are created on the first Exchange server installed in the organization.  If you need to remove a database or uninstall Exchange you will need to move the arbitration mailboxes to a different database or different server, respectively. Command to search all databases for the arbitration mailboxes: get-mailboxdatabase | Get-Mailbox -Arbitration |ft name,database,servername Here is the command to determine if arbitration mailboxes Read more [...]

Troubleshooting The Exchange Offline Address Book and Address Lists

Background: On any Outlook client, the Offline Address Book (OAB) is used when pulling the list of Outlook Contacts in order to address a message. The offline address book is only updated once every 24 hours, however the update can be forced by (send/receive, download offline address book).  To add more to the story, the Outlook Name Cache is a function of Outlook in which the "To:" line of a new email will automatically populate as soon as the user inputs the first letter of a recipient that they Read more [...]

Outbound email messages stuck in OWA’s Drafts folder and are never sent out

Issue: You receive reports that users cannot send outbound email from the Exchange server in one of your sites Diagnosis steps: You attempt to test outbound mail with a test account using Outlook Web Access and out mail email immediately moves to the Drafts folder after you click 'send'. -You review the queue viewer, however there appears to be nothing stuck in the queues: -You attempt to telnet on Port 25 from the troubled server to a healthy server or healthy server to troubled server Read more [...]

400 Bad Request Error attempting to Change Password via OWA

Issue: When users attempt to change their password via OWA they are redirected to "https://exchange/owa/lang.owa" and then receive an http "400 Bad Request" After clicking "ok" user received "Bad Request" in the browser: Cause: Users experiencing the issue are showing blank Time Zone and Language settings: You query the same settings for users that do not have the change password issue and determine their Time Zone and Language settings are populated: Resolution: 1) It's Read more [...]