Quá trình chuyển đổi mailbox từ 2010 qua 2016 sẽ cần giai đoạn trung gian. Để đảm bảo user trên 2010 và 2016 đều có thể truy cập được Public Folder trong giai đoạn trung gian này thì ta cần làm Proxy Public Folder
1. Create an empty mailbox database on each public folder server.
New-MailboxDatabase -Server EXVDC3 -Name ProxyPublicFolderDB -IsExcludedFromProvisioning $true
Lưu ý là database này chỉ chứa Proxy Public Folder Mailbox, không được chứa bất kỳ mailbox nào khác.
2. Create a proxy mailbox within the new mailbox database and hide the mailbox from the address book
New-Mailbox -Name ProxyPublicFolder -Database ProxyPublicFolderDB
Set-Mailbox -Identity ProxyPublicFolder -HiddenFromAddressListsEnabled $true
3. Enable AutoDiscover to return the proxy public folder mailboxes
Set-MailboxDatabase ProxyPublicFolderDB -RPCClientAccessServer EXVDC3
4. Configure the user mailboxes to allow access to the legacy on-premises public folders
Set-OrganizationConfig -PublicFoldersEnabled Remote -RemotePublicFolderMailboxes ProxyPublicFolder
Comments
Post a Comment