Archive

Posts Tagged ‘Exchange’

Change Exchange 2007 / 2010 Mailbox Type

September 14th, 2011 No comments

To Change a mailbox from one type to another in exchange 2007 and 2010 like below :-

User mailbox to shared mailbox
User mailbox to resource mailbox
Shared mailbox to user mailbox
Shared mailbox to resource mailbox
Resource mailbox to user mailbox
Resource mailbox to shared mailbox

Type the following in the exchange management shell.

Set-Mailbox ConfRoom1 -Type value

Where value is Regular, Room, Equipment, Shared.

The operation failed due to an invalid format in the HTTP request

May 9th, 2011 No comments

When branching out the public folders in exchange system manager if you see the following error :

The operation failed due to an invalid format in the HTTP request. Verify that the host header is correct for the virtual server.

Check to ensure the default website is started.

How to export email addresses from Active Directory

April 21st, 2010 No comments

A neat little command to dump out the whole of Active Directory users email addresses to the root of c: can be found below :-

dsquery * -filter "(&(objectCategory=person)(objectClass=user)(mail=*))" -attr mail displayname -limit 0 > c:\email_addresses.txt

How to find out who has a particular email address in Microsoft Exchange 2003

June 11th, 2009 No comments

Sometimes people in Active Directory have extra email addresses associated with them. This makes identifying who has certain addresses very time consuming.

An example of this might be someone that has the email address info@company.com you then go to create a mailbox with that alias and you get the following message come up :

This email address aready exists in this organization

In order to find out who has this address you can do the following :-

Read more…