Skip to main content

Posts

Showing posts with the label 2010

MIGRATE PUBLIC FOLDER TỪ EXCHANGE 2010 QUA 2016

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 -R...

LỖI GỬI MAIL TỪ EXCHANGE 2016 QUA EXCHANGE 2010 KHÔNG ĐƯỢC

  Lỗi do chưa set Permission cho Exchange Authentication trong Receive Connector : Default Connector Relay Connector

EXCHANGE 2010 - 1 SỐ SCRIPT HAY

Export mailbox statitics Get-MailboxDatabase "MailboxDB"| Get-MailboxStatistics | Select DisplayName, LastLoggedOnUserAccount, ItemCount, TotalItemSize, LastLogonTime, LastLogoffTime | Sort-Object TotalItemSize.Value.toMB  -Descending | Export-CSV c:\MailboxDB.csv Export mailbox statitics với dung lượng theo MB Get-MailboxDatabase "MailboxDB"| Get-MailboxStatistics | Select DisplayName, LastLoggedOnUserAccount, ItemCount, @{expression={$_.totalitemsize.value.ToMB()};label=”Size(MB)”}, LastLogonTime, LastLogoffTime | Export-CSV c:\mailboxdb.csv Kiểm tra dung lượng database Get-MailboxDatabase < Database name > -Status | Format-List Name, DatabaseSize, AvailableNewMailboxSpace Export mailbox New-MailboxExportRequest -Mailbox Anh.TV -FilePath "\\exvdc2\MB-Export\Anh.TV.pst"