pondělí 27. února 2012

How to Convert an Exchange 2007 Linked Mailbox to a User Mailbox

How to Convert an Exchange 2007 Linked Mailbox to a User Mailbox

Takže zase Exchange Server, tentokrát delší návod ... a v angličtině.
Musel jsem si ho sem uložit (i s odkazem na zdroj) ... až to zase budu někdy příště potřebovat.


  1. Open Powershell for Exchange
  2. Connect to Exchange server with the mailbox to convert
    1. Set-ExchangeServer <Exchange server FQDN>
      1. i.e. Set-ExchangeServer exchange01.mydomain.com
  3. Display mailbox information
    1. Get-Mailbox <mailbox name> |fl
      1. i.e. Get-Mailbox "Jones, Tom" |fl
        1. RecipientType : UserMailbox
        2. RecipientTypeDetails : LinkedMailbox
        3. DisplayName : Jones, Tom
        4. Database : EXCHANGE01\First Storage Group\Mailbox Database
        5. SamAccountName : Tom.Lane
        6. Identity : mydomain.com/Users/Jones, Tom
  4. Display mailbox permissions
    1. Get-MailboxPermissions "<mailbox display name>"
      1. i.e. Get-MailboxPermissions tom.lane
  5. Disable Mailbox
    1. Disable-Mailbox -Identity "<mailbox display name>"
      1. Disable-Mailbox -Identity "Jones, Tom"
  6. Reconnect Mailbox
    1. Connect-Mailbox -Identity "<MailboxIDParameter>" -Database "<DatabaseIdParameter>" -User "<UserIdParameter>"
      1. i.e. Connect-Mailbox -Identity "Jones, Tom" -Database "EXCHANGE01\First Storage Group\Mailbox Database" -User "mydomain.com/Users/Jones, Tom"
  7. Check mailbox information
    1. Get-Mailbox "Jones, Tom" |fl
      1. RecipientType : UserMailbox
      2. RecipientTypeDetails : UserMailbox
      3. DisplayName : Jones, Tom
      4. Database : EXCHANGE01\First Storage Group\Mailbox Database
      5. SamAccountName : Tom.Lane
      6. Identity : mydomain.com/Users/Jones, Tom
  8. After replication; test
Zdroj:
http://wiki.bonusbits.com/wiki/How_to_Convert_an_Exchange_2007_Linked_Mailbox_to_a_User_Mailbox

Žádné komentáře:

Okomentovat