Link to home
Start Free TrialLog in
Avatar of eli290
eli290

asked on

Exchange 2007 database management

I am trying to get a list of which mailboxes are in which database. I currently have 3 mailboxes and would like to move a few mailboxes into another database. Thanks
ASKER CERTIFIED SOLUTION
Avatar of Hypercat (Deb)
Hypercat (Deb)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
run from powershell

get-mailbox | select-object name,database

if you want them in a csv file add | export-csv c:\list.csv