I've got about a hundred to convert. How can I convert the whole lot at once?
For mailboxes with a common attribute value:
get-mailbox | where {$_.something -eq "specificvalue"}| set-mailbox -type
Room
The first query will be fast because it only search one location. The
second query will be much slower, because it search all users in the forest
and check each of them.
PL
Add resources attributes to individual resource mailbox:
http://technet.microsoft.com/en-us/library/bb201697.aspx
I am using Beta 2 of Exchange 2007 and it is not working.
PL